From 23a44d6417fc1eca6e61d64a79ef4e1d01928b30 Mon Sep 17 00:00:00 2001 From: Rene Moser Date: Wed, 20 May 2015 21:13:12 +0200 Subject: [PATCH] instanceGroupResponse: fix description Signed-off-by: Daan Hoogland --- .../cloudstack/api/response/InstanceGroupResponse.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/api/src/org/apache/cloudstack/api/response/InstanceGroupResponse.java b/api/src/org/apache/cloudstack/api/response/InstanceGroupResponse.java index a2baf992f0e..39f4b2f8538 100644 --- a/api/src/org/apache/cloudstack/api/response/InstanceGroupResponse.java +++ b/api/src/org/apache/cloudstack/api/response/InstanceGroupResponse.java @@ -30,8 +30,9 @@ import com.cloud.vm.InstanceGroup; @SuppressWarnings("unused") @EntityReference(value = InstanceGroup.class) public class InstanceGroupResponse extends BaseResponse implements ControlledViewEntityResponse { + @SerializedName(ApiConstants.ID) - @Param(description = "the id of the instance group") + @Param(description = "the ID of the instance group") private String id; @SerializedName(ApiConstants.NAME) @@ -47,11 +48,11 @@ public class InstanceGroupResponse extends BaseResponse implements ControlledVie private String accountName; @SerializedName(ApiConstants.PROJECT_ID) - @Param(description = "the project id of the group") + @Param(description = "the project ID of the instance group") private String projectId; @SerializedName(ApiConstants.PROJECT) - @Param(description = "the project name of the group") + @Param(description = "the project name of the instance group") private String projectName; @SerializedName(ApiConstants.DOMAIN_ID)