You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2015/05/21 17:49:42 UTC

[02/10] git commit: updated refs/heads/master to 84266b1

instanceGroupResponse: fix description

Signed-off-by: Daan Hoogland <da...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/23a44d64
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/23a44d64
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/23a44d64

Branch: refs/heads/master
Commit: 23a44d6417fc1eca6e61d64a79ef4e1d01928b30
Parents: 3824d99
Author: Rene Moser <re...@apache.org>
Authored: Wed May 20 21:13:12 2015 +0200
Committer: Daan Hoogland <da...@gmail.com>
Committed: Thu May 21 17:49:17 2015 +0200

----------------------------------------------------------------------
 .../apache/cloudstack/api/response/InstanceGroupResponse.java | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/23a44d64/api/src/org/apache/cloudstack/api/response/InstanceGroupResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/InstanceGroupResponse.java b/api/src/org/apache/cloudstack/api/response/InstanceGroupResponse.java
index a2baf99..39f4b2f 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)