You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ah...@apache.org on 2013/11/20 16:35:15 UTC

[28/51] [partial] Reformat all source code. Added checkstyle to check the source code

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/ConditionResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ConditionResponse.java b/api/src/org/apache/cloudstack/api/response/ConditionResponse.java
index ccdd278..732b25a 100644
--- a/api/src/org/apache/cloudstack/api/response/ConditionResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ConditionResponse.java
@@ -27,7 +27,7 @@ import com.cloud.network.as.Condition;
 import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=Condition.class)
+@EntityReference(value = Condition.class)
 @SuppressWarnings("unused")
 public class ConditionResponse extends BaseResponse implements ControlledEntityResponse {
     @SerializedName("id")
@@ -74,7 +74,6 @@ public class ConditionResponse extends BaseResponse implements ControlledEntityR
     // ///////////////// Setters ///////////////////////
     // ///////////////////////////////////////////////////
 
-
     public void setId(String id) {
         this.id = id;
     }

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/ConfigurationResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ConfigurationResponse.java b/api/src/org/apache/cloudstack/api/response/ConfigurationResponse.java
index fa0d4b4..5de3350 100644
--- a/api/src/org/apache/cloudstack/api/response/ConfigurationResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ConfigurationResponse.java
@@ -23,25 +23,30 @@ import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
 public class ConfigurationResponse extends BaseResponse {
-    @SerializedName(ApiConstants.CATEGORY) @Param(description="the category of the configuration")
+    @SerializedName(ApiConstants.CATEGORY)
+    @Param(description = "the category of the configuration")
     private String category;
 
-    @SerializedName(ApiConstants.NAME) @Param(description="the name of the configuration")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "the name of the configuration")
     private String name;
 
-    @SerializedName(ApiConstants.VALUE) @Param(description="the value of the configuration")
+    @SerializedName(ApiConstants.VALUE)
+    @Param(description = "the value of the configuration")
     private String value;
 
-    @SerializedName(ApiConstants.SCOPE) @Param(description="scope(zone/cluster/pool/account) of the parameter that needs to be updated")
+    @SerializedName(ApiConstants.SCOPE)
+    @Param(description = "scope(zone/cluster/pool/account) of the parameter that needs to be updated")
     private String scope;
 
-    @SerializedName(ApiConstants.ID) @Param(description="the value of the configuration")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the value of the configuration")
     private Long id;
 
-    @SerializedName(ApiConstants.DESCRIPTION) @Param(description="the description of the configuration")
+    @SerializedName(ApiConstants.DESCRIPTION)
+    @Param(description = "the description of the configuration")
     private String description;
 
-
     public String getCategory() {
         return category;
     }

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/ControlledViewEntityResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ControlledViewEntityResponse.java b/api/src/org/apache/cloudstack/api/response/ControlledViewEntityResponse.java
index 1168632..abe4dd7 100644
--- a/api/src/org/apache/cloudstack/api/response/ControlledViewEntityResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ControlledViewEntityResponse.java
@@ -28,4 +28,3 @@ public interface ControlledViewEntityResponse {
 
     public void setDomainName(String domainName);
 }
-

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/CounterResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/CounterResponse.java b/api/src/org/apache/cloudstack/api/response/CounterResponse.java
index 4f5784a..5fe8e56 100644
--- a/api/src/org/apache/cloudstack/api/response/CounterResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/CounterResponse.java
@@ -26,7 +26,7 @@ import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
 @SuppressWarnings("unused")
-@EntityReference(value=Counter.class)
+@EntityReference(value = Counter.class)
 public class CounterResponse extends BaseResponse {
     @SerializedName("id")
     @Param(description = "the id of the Counter")
@@ -48,7 +48,6 @@ public class CounterResponse extends BaseResponse {
     @Param(description = "zone id of counter")
     private String zoneId;
 
-
     @Override
     public String getObjectId() {
         return this.id;

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/CreateSSHKeyPairResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/CreateSSHKeyPairResponse.java b/api/src/org/apache/cloudstack/api/response/CreateSSHKeyPairResponse.java
index e247fb4..a640495 100644
--- a/api/src/org/apache/cloudstack/api/response/CreateSSHKeyPairResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/CreateSSHKeyPairResponse.java
@@ -21,10 +21,12 @@ import com.google.gson.annotations.SerializedName;
 
 public class CreateSSHKeyPairResponse extends SSHKeyPairResponse {
 
-    @SerializedName("privatekey") @Param(description="Private key")
+    @SerializedName("privatekey")
+    @Param(description = "Private key")
     private String privateKey;
 
-    public CreateSSHKeyPairResponse() {}
+    public CreateSSHKeyPairResponse() {
+    }
 
     public CreateSSHKeyPairResponse(String name, String fingerprint, String privateKey) {
         super(name, fingerprint);

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/CustomCertificateResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/CustomCertificateResponse.java b/api/src/org/apache/cloudstack/api/response/CustomCertificateResponse.java
index 59c108e..c46356a 100644
--- a/api/src/org/apache/cloudstack/api/response/CustomCertificateResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/CustomCertificateResponse.java
@@ -23,7 +23,8 @@ import com.google.gson.annotations.SerializedName;
 
 public class CustomCertificateResponse extends BaseResponse {
 
-    @SerializedName("message") @Param(description="message of the certificate upload operation")
+    @SerializedName("message")
+    @Param(description = "message of the certificate upload operation")
     private String message;
 
     public String getResultMessage() {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/DiskOfferingResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/DiskOfferingResponse.java b/api/src/org/apache/cloudstack/api/response/DiskOfferingResponse.java
index 4291d85..e5a0abf 100644
--- a/api/src/org/apache/cloudstack/api/response/DiskOfferingResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/DiskOfferingResponse.java
@@ -26,60 +26,78 @@ import com.cloud.offering.DiskOffering;
 import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=DiskOffering.class)
+@EntityReference(value = DiskOffering.class)
 public class DiskOfferingResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="unique ID of the disk offering")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "unique ID of the disk offering")
     private String id;
 
-    @SerializedName(ApiConstants.DOMAIN_ID) @Param(description="the domain ID this disk offering belongs to. Ignore this information as it is not currently applicable.")
+    @SerializedName(ApiConstants.DOMAIN_ID)
+    @Param(description = "the domain ID this disk offering belongs to. Ignore this information as it is not currently applicable.")
     private String domainId;
 
-    @SerializedName(ApiConstants.DOMAIN) @Param(description="the domain name this disk offering belongs to. Ignore this information as it is not currently applicable.")
+    @SerializedName(ApiConstants.DOMAIN)
+    @Param(description = "the domain name this disk offering belongs to. Ignore this information as it is not currently applicable.")
     private String domain;
 
-    @SerializedName(ApiConstants.NAME) @Param(description="the name of the disk offering")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "the name of the disk offering")
     private String name;
 
-    @SerializedName(ApiConstants.DISPLAY_TEXT) @Param(description="an alternate display text of the disk offering.")
+    @SerializedName(ApiConstants.DISPLAY_TEXT)
+    @Param(description = "an alternate display text of the disk offering.")
     private String displayText;
 
-    @SerializedName(ApiConstants.DISK_SIZE) @Param(description="the size of the disk offering in GB")
+    @SerializedName(ApiConstants.DISK_SIZE)
+    @Param(description = "the size of the disk offering in GB")
     private Long diskSize;
 
-    @SerializedName(ApiConstants.CREATED) @Param(description="the date this disk offering was created")
+    @SerializedName(ApiConstants.CREATED)
+    @Param(description = "the date this disk offering was created")
     private Date created;
 
-    @SerializedName("iscustomized") @Param(description="true if disk offering uses custom size, false otherwise")
+    @SerializedName("iscustomized")
+    @Param(description = "true if disk offering uses custom size, false otherwise")
     private Boolean customized;
 
-    @SerializedName("iscustomizediops") @Param(description="true if disk offering uses custom iops, false otherwise")
+    @SerializedName("iscustomizediops")
+    @Param(description = "true if disk offering uses custom iops, false otherwise")
     private Boolean customizedIops;
 
-    @SerializedName(ApiConstants.MIN_IOPS) @Param(description="the min iops of the disk offering")
+    @SerializedName(ApiConstants.MIN_IOPS)
+    @Param(description = "the min iops of the disk offering")
     private Long minIops;
 
-    @SerializedName(ApiConstants.MAX_IOPS) @Param(description="the max iops of the disk offering")
+    @SerializedName(ApiConstants.MAX_IOPS)
+    @Param(description = "the max iops of the disk offering")
     private Long maxIops;
 
-    @SerializedName(ApiConstants.TAGS) @Param(description="the tags for the disk offering")
+    @SerializedName(ApiConstants.TAGS)
+    @Param(description = "the tags for the disk offering")
     private String tags;
 
-    @SerializedName("storagetype") @Param(description="the storage type for this disk offering")
+    @SerializedName("storagetype")
+    @Param(description = "the storage type for this disk offering")
     private String storageType;
 
-    @SerializedName("diskBytesReadRate") @Param(description="bytes read rate of the disk offering")
+    @SerializedName("diskBytesReadRate")
+    @Param(description = "bytes read rate of the disk offering")
     private Long bytesReadRate;
 
-    @SerializedName("diskBytesWriteRate") @Param(description="bytes write rate of the disk offering")
+    @SerializedName("diskBytesWriteRate")
+    @Param(description = "bytes write rate of the disk offering")
     private Long bytesWriteRate;
 
-    @SerializedName("diskIopsReadRate") @Param(description="io requests read rate of the disk offering")
+    @SerializedName("diskIopsReadRate")
+    @Param(description = "io requests read rate of the disk offering")
     private Long iopsReadRate;
 
-    @SerializedName("diskIopsWriteRate") @Param(description="io requests write rate of the disk offering")
+    @SerializedName("diskIopsWriteRate")
+    @Param(description = "io requests write rate of the disk offering")
     private Long iopsWriteRate;
 
-    @SerializedName("displayoffering") @Param(description="whether to display the offering to the end user or not.")
+    @SerializedName("displayoffering")
+    @Param(description = "whether to display the offering to the end user or not.")
     private Boolean displayOffering;
 
     public Boolean getDisplayOffering() {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/DomainResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/DomainResponse.java b/api/src/org/apache/cloudstack/api/response/DomainResponse.java
index 736a96c..87b170b 100644
--- a/api/src/org/apache/cloudstack/api/response/DomainResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/DomainResponse.java
@@ -26,28 +26,36 @@ import com.google.gson.annotations.SerializedName;
 
 @EntityReference(value = Domain.class)
 public class DomainResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the domain")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the domain")
     private String id;
 
-    @SerializedName(ApiConstants.NAME) @Param(description="the name of the domain")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "the name of the domain")
     private String domainName;
 
-    @SerializedName(ApiConstants.LEVEL) @Param(description="the level of the domain")
+    @SerializedName(ApiConstants.LEVEL)
+    @Param(description = "the level of the domain")
     private Integer level;
 
-    @SerializedName("parentdomainid") @Param(description="the domain ID of the parent domain")
+    @SerializedName("parentdomainid")
+    @Param(description = "the domain ID of the parent domain")
     private String parentDomainId;
 
-    @SerializedName("parentdomainname") @Param(description="the domain name of the parent domain")
+    @SerializedName("parentdomainname")
+    @Param(description = "the domain name of the parent domain")
     private String parentDomainName;
 
-    @SerializedName("haschild") @Param(description="whether the domain has one or more sub-domains")
+    @SerializedName("haschild")
+    @Param(description = "whether the domain has one or more sub-domains")
     private boolean hasChild;
 
-    @SerializedName(ApiConstants.NETWORK_DOMAIN) @Param(description="the network domain")
+    @SerializedName(ApiConstants.NETWORK_DOMAIN)
+    @Param(description = "the network domain")
     private String networkDomain;
 
-    @SerializedName(ApiConstants.PATH) @Param(description="the path of the domain")
+    @SerializedName(ApiConstants.PATH)
+    @Param(description = "the path of the domain")
     private String path;
 
     public String getId() {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/DomainRouterResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/DomainRouterResponse.java b/api/src/org/apache/cloudstack/api/response/DomainRouterResponse.java
index 5ea28b9..72c6201 100644
--- a/api/src/org/apache/cloudstack/api/response/DomainRouterResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/DomainRouterResponse.java
@@ -30,140 +30,182 @@ import com.cloud.vm.VirtualMachine;
 import com.cloud.vm.VirtualMachine.State;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=VirtualMachine.class)
+@EntityReference(value = VirtualMachine.class)
 @SuppressWarnings("unused")
-public class DomainRouterResponse extends BaseResponse implements ControlledViewEntityResponse{
-    @SerializedName(ApiConstants.ID) @Param(description="the id of the router")
+public class DomainRouterResponse extends BaseResponse implements ControlledViewEntityResponse {
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the id of the router")
     private String id;
 
-    @SerializedName(ApiConstants.ZONE_ID) @Param(description="the Zone ID for the router")
+    @SerializedName(ApiConstants.ZONE_ID)
+    @Param(description = "the Zone ID for the router")
     private String zoneId;
 
-    @SerializedName(ApiConstants.ZONE_NAME) @Param(description="the Zone name for the router")
+    @SerializedName(ApiConstants.ZONE_NAME)
+    @Param(description = "the Zone name for the router")
     private String zoneName;
 
-    @SerializedName(ApiConstants.DNS1) @Param(description="the first DNS for the router")
+    @SerializedName(ApiConstants.DNS1)
+    @Param(description = "the first DNS for the router")
     private String dns1;
 
-    @SerializedName(ApiConstants.DNS2) @Param(description="the second DNS for the router")
+    @SerializedName(ApiConstants.DNS2)
+    @Param(description = "the second DNS for the router")
     private String dns2;
 
-    @SerializedName(ApiConstants.IP6_DNS1) @Param(description="the first IPv6 DNS for the router")
+    @SerializedName(ApiConstants.IP6_DNS1)
+    @Param(description = "the first IPv6 DNS for the router")
     private String ip6Dns1;
 
-    @SerializedName(ApiConstants.IP6_DNS2) @Param(description="the second IPv6 DNS for the router")
+    @SerializedName(ApiConstants.IP6_DNS2)
+    @Param(description = "the second IPv6 DNS for the router")
     private String ip6Dns2;
 
-    @SerializedName("networkdomain") @Param(description="the network domain for the router")
+    @SerializedName("networkdomain")
+    @Param(description = "the network domain for the router")
     private String networkDomain;
 
-    @SerializedName(ApiConstants.GATEWAY) @Param(description="the gateway for the router")
+    @SerializedName(ApiConstants.GATEWAY)
+    @Param(description = "the gateway for the router")
     private String gateway;
 
-    @SerializedName(ApiConstants.NAME) @Param(description="the name of the router")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "the name of the router")
     private String name;
 
-    @SerializedName(ApiConstants.POD_ID) @Param(description="the Pod ID for the router")
+    @SerializedName(ApiConstants.POD_ID)
+    @Param(description = "the Pod ID for the router")
     private String podId;
 
-    @SerializedName(ApiConstants.HOST_ID) @Param(description="the host ID for the router")
+    @SerializedName(ApiConstants.HOST_ID)
+    @Param(description = "the host ID for the router")
     private String hostId;
 
-    @SerializedName("hostname") @Param(description="the hostname for the router")
+    @SerializedName("hostname")
+    @Param(description = "the hostname for the router")
     private String hostName;
 
-    @SerializedName(ApiConstants.LINK_LOCAL_IP) @Param(description="the link local IP address for the router")
+    @SerializedName(ApiConstants.LINK_LOCAL_IP)
+    @Param(description = "the link local IP address for the router")
     private String linkLocalIp;
 
-    @SerializedName(ApiConstants.LINK_LOCAL_MAC_ADDRESS) @Param(description="the link local MAC address for the router")
+    @SerializedName(ApiConstants.LINK_LOCAL_MAC_ADDRESS)
+    @Param(description = "the link local MAC address for the router")
     private String linkLocalMacAddress;
 
-    @SerializedName(ApiConstants.LINK_LOCAL_MAC_NETMASK) @Param(description="the link local netmask for the router")
+    @SerializedName(ApiConstants.LINK_LOCAL_MAC_NETMASK)
+    @Param(description = "the link local netmask for the router")
     private String linkLocalNetmask;
 
-    @SerializedName(ApiConstants.LINK_LOCAL_NETWORK_ID) @Param(description="the ID of the corresponding link local network")
+    @SerializedName(ApiConstants.LINK_LOCAL_NETWORK_ID)
+    @Param(description = "the ID of the corresponding link local network")
     private String linkLocalNetworkId;
 
-    @SerializedName(ApiConstants.PUBLIC_IP) @Param(description="the public IP address for the router")
+    @SerializedName(ApiConstants.PUBLIC_IP)
+    @Param(description = "the public IP address for the router")
     private String publicIp;
 
-    @SerializedName("publicmacaddress") @Param(description="the public MAC address for the router")
+    @SerializedName("publicmacaddress")
+    @Param(description = "the public MAC address for the router")
     private String publicMacAddress;
 
-    @SerializedName("publicnetmask") @Param(description="the public netmask for the router")
+    @SerializedName("publicnetmask")
+    @Param(description = "the public netmask for the router")
     private String publicNetmask;
 
-    @SerializedName("publicnetworkid") @Param(description="the ID of the corresponding public network")
+    @SerializedName("publicnetworkid")
+    @Param(description = "the ID of the corresponding public network")
     private String publicNetworkId;
 
-    @SerializedName("guestipaddress") @Param(description="the guest IP address for the router")
+    @SerializedName("guestipaddress")
+    @Param(description = "the guest IP address for the router")
     private String guestIpAddress;
 
-    @SerializedName("guestmacaddress") @Param(description="the guest MAC address for the router")
+    @SerializedName("guestmacaddress")
+    @Param(description = "the guest MAC address for the router")
     private String guestMacAddress;
 
-    @SerializedName("guestnetmask") @Param(description="the guest netmask for the router")
+    @SerializedName("guestnetmask")
+    @Param(description = "the guest netmask for the router")
     private String guestNetmask;
 
-    @SerializedName("guestnetworkid") @Param(description="the ID of the corresponding guest network")
+    @SerializedName("guestnetworkid")
+    @Param(description = "the ID of the corresponding guest network")
     private String guestNetworkId;
 
-    @SerializedName(ApiConstants.TEMPLATE_ID) @Param(description="the template ID for the router")
+    @SerializedName(ApiConstants.TEMPLATE_ID)
+    @Param(description = "the template ID for the router")
     private String templateId;
 
-    @SerializedName(ApiConstants.CREATED) @Param(description="the date and time the router was created")
+    @SerializedName(ApiConstants.CREATED)
+    @Param(description = "the date and time the router was created")
     private Date created;
 
-    @SerializedName(ApiConstants.STATE) @Param(description="the state of the router")
+    @SerializedName(ApiConstants.STATE)
+    @Param(description = "the state of the router")
     private State state;
 
-    @SerializedName(ApiConstants.ACCOUNT) @Param(description="the account associated with the router")
+    @SerializedName(ApiConstants.ACCOUNT)
+    @Param(description = "the account associated with the router")
     private String accountName;
 
-    @SerializedName(ApiConstants.PROJECT_ID) @Param(description="the project id of the ipaddress")
+    @SerializedName(ApiConstants.PROJECT_ID)
+    @Param(description = "the project id of the ipaddress")
     private String projectId;
 
-    @SerializedName(ApiConstants.PROJECT) @Param(description="the project name of the address")
+    @SerializedName(ApiConstants.PROJECT)
+    @Param(description = "the project name of the address")
     private String projectName;
 
-    @SerializedName(ApiConstants.DOMAIN_ID) @Param(description="the domain ID associated with the router")
+    @SerializedName(ApiConstants.DOMAIN_ID)
+    @Param(description = "the domain ID associated with the router")
     private String domainId;
 
-    @SerializedName(ApiConstants.DOMAIN) @Param(description="the domain associated with the router")
+    @SerializedName(ApiConstants.DOMAIN)
+    @Param(description = "the domain associated with the router")
     private String domainName;
 
-    @SerializedName(ApiConstants.SERVICE_OFFERING_ID) @Param(description="the ID of the service offering of the virtual machine")
+    @SerializedName(ApiConstants.SERVICE_OFFERING_ID)
+    @Param(description = "the ID of the service offering of the virtual machine")
     private String serviceOfferingId;
 
-    @SerializedName("serviceofferingname") @Param(description="the name of the service offering of the virtual machine")
+    @SerializedName("serviceofferingname")
+    @Param(description = "the name of the service offering of the virtual machine")
     private String serviceOfferingName;
 
-    @SerializedName("isredundantrouter") @Param(description="if this router is an redundant virtual router")
+    @SerializedName("isredundantrouter")
+    @Param(description = "if this router is an redundant virtual router")
     private boolean isRedundantRouter;
 
-    @SerializedName("redundantstate") @Param(description="the state of redundant virtual router")
+    @SerializedName("redundantstate")
+    @Param(description = "the state of redundant virtual router")
     private String redundantState;
 
-    @SerializedName("version") @Param(description="the version of template")
+    @SerializedName("version")
+    @Param(description = "the version of template")
     private String version;
 
-    @SerializedName("scriptsversion") @Param(description="the version of scripts")
+    @SerializedName("scriptsversion")
+    @Param(description = "the version of scripts")
     private String scriptsVersion;
 
-    @SerializedName(ApiConstants.VPC_ID) @Param(description="VPC the router belongs to")
+    @SerializedName(ApiConstants.VPC_ID)
+    @Param(description = "VPC the router belongs to")
     private String vpcId;
-    
-    @SerializedName(ApiConstants.ROLE) @Param(description="role of the domain router")
+
+    @SerializedName(ApiConstants.ROLE)
+    @Param(description = "role of the domain router")
     private String role;
 
-    @SerializedName("nic")  @Param(description="the list of nics associated with the router",
-            responseObject = NicResponse.class, since="4.0")
+    @SerializedName("nic")
+    @Param(description = "the list of nics associated with the router", responseObject = NicResponse.class, since = "4.0")
     private Set<NicResponse> nics;
 
-    @SerializedName("requiresupgrade") @Param(description="true if the router template requires upgrader")
+    @SerializedName("requiresupgrade")
+    @Param(description = "true if the router template requires upgrader")
     private boolean requiresUpgrade;
 
-    public DomainRouterResponse(){
+    public DomainRouterResponse() {
         nics = new LinkedHashSet<NicResponse>();
     }
 
@@ -326,6 +368,7 @@ public class DomainRouterResponse extends BaseResponse implements ControlledView
     public void setScriptsVersion(String scriptsVersion) {
         this.scriptsVersion = scriptsVersion;
     }
+
     @Override
     public void setProjectId(String projectId) {
         this.projectId = projectId;
@@ -348,23 +391,23 @@ public class DomainRouterResponse extends BaseResponse implements ControlledView
         this.nics.add(nic);
     }
 
-	public String getIp6Dns1() {
-		return ip6Dns1;
-	}
+    public String getIp6Dns1() {
+        return ip6Dns1;
+    }
 
-	public void setIp6Dns1(String ip6Dns1) {
-		this.ip6Dns1 = ip6Dns1;
-	}
+    public void setIp6Dns1(String ip6Dns1) {
+        this.ip6Dns1 = ip6Dns1;
+    }
 
-	public String getIp6Dns2() {
-		return ip6Dns2;
-	}
+    public String getIp6Dns2() {
+        return ip6Dns2;
+    }
+
+    public void setIp6Dns2(String ip6Dns2) {
+        this.ip6Dns2 = ip6Dns2;
+    }
 
-	public void setIp6Dns2(String ip6Dns2) {
-		this.ip6Dns2 = ip6Dns2;
-	}
-	
-	public void setRole(String role) {
+    public void setRole(String role) {
         this.role = role;
     }
 

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/EventResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/EventResponse.java b/api/src/org/apache/cloudstack/api/response/EventResponse.java
index c2bf757..d362abc 100644
--- a/api/src/org/apache/cloudstack/api/response/EventResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/EventResponse.java
@@ -26,46 +26,59 @@ import com.cloud.event.Event;
 import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=Event.class)
+@EntityReference(value = Event.class)
 @SuppressWarnings("unused")
-public class EventResponse extends BaseResponse implements ControlledViewEntityResponse{
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the event")
+public class EventResponse extends BaseResponse implements ControlledViewEntityResponse {
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the event")
     private String id;
 
-    @SerializedName(ApiConstants.USERNAME) @Param(description="the name of the user who performed the action (can be different from the account if an admin is performing an action for a user, e.g. starting/stopping a user's virtual machine)")
+    @SerializedName(ApiConstants.USERNAME)
+    @Param(description = "the name of the user who performed the action (can be different from the account if an admin is performing an action for a user, e.g. starting/stopping a user's virtual machine)")
     private String username;
 
-    @SerializedName(ApiConstants.TYPE) @Param(description="the type of the event (see event types)")
+    @SerializedName(ApiConstants.TYPE)
+    @Param(description = "the type of the event (see event types)")
     private String eventType;
 
-    @SerializedName(ApiConstants.LEVEL) @Param(description="the event level (INFO, WARN, ERROR)")
+    @SerializedName(ApiConstants.LEVEL)
+    @Param(description = "the event level (INFO, WARN, ERROR)")
     private String level;
 
-    @SerializedName(ApiConstants.DESCRIPTION) @Param(description="a brief description of the event")
+    @SerializedName(ApiConstants.DESCRIPTION)
+    @Param(description = "a brief description of the event")
     private String description;
 
-    @SerializedName(ApiConstants.ACCOUNT) @Param(description="the account name for the account that owns the object being acted on in the event (e.g. the owner of the virtual machine, ip address, or security group)")
+    @SerializedName(ApiConstants.ACCOUNT)
+    @Param(description = "the account name for the account that owns the object being acted on in the event (e.g. the owner of the virtual machine, ip address, or security group)")
     private String accountName;
 
-    @SerializedName(ApiConstants.PROJECT_ID) @Param(description="the project id of the ipaddress")
+    @SerializedName(ApiConstants.PROJECT_ID)
+    @Param(description = "the project id of the ipaddress")
     private String projectId;
 
-    @SerializedName(ApiConstants.PROJECT) @Param(description="the project name of the address")
+    @SerializedName(ApiConstants.PROJECT)
+    @Param(description = "the project name of the address")
     private String projectName;
 
-    @SerializedName(ApiConstants.DOMAIN_ID) @Param(description="the id of the account's domain")
+    @SerializedName(ApiConstants.DOMAIN_ID)
+    @Param(description = "the id of the account's domain")
     private String domainId;
 
-    @SerializedName(ApiConstants.DOMAIN) @Param(description="the name of the account's domain")
+    @SerializedName(ApiConstants.DOMAIN)
+    @Param(description = "the name of the account's domain")
     private String domainName;
 
-    @SerializedName(ApiConstants.CREATED) @Param(description="the date the event was created")
+    @SerializedName(ApiConstants.CREATED)
+    @Param(description = "the date the event was created")
     private Date created;
 
-    @SerializedName(ApiConstants.STATE) @Param(description="the state of the event")
+    @SerializedName(ApiConstants.STATE)
+    @Param(description = "the state of the event")
     private Event.State state;
 
-    @SerializedName("parentid") @Param(description="whether the event is parented")
+    @SerializedName("parentid")
+    @Param(description = "whether the event is parented")
     private String parentId;
 
     public void setId(String id) {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/EventTypeResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/EventTypeResponse.java b/api/src/org/apache/cloudstack/api/response/EventTypeResponse.java
index b526435..d50a0a9 100644
--- a/api/src/org/apache/cloudstack/api/response/EventTypeResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/EventTypeResponse.java
@@ -23,7 +23,8 @@ import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
 public class EventTypeResponse extends BaseResponse {
-    @SerializedName(ApiConstants.NAME) @Param(description="Event Type")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "Event Type")
     private String name;
 
     public String getName() {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/ExceptionResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ExceptionResponse.java b/api/src/org/apache/cloudstack/api/response/ExceptionResponse.java
index 830cf00..5a2dfb7 100644
--- a/api/src/org/apache/cloudstack/api/response/ExceptionResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ExceptionResponse.java
@@ -27,22 +27,26 @@ import com.google.gson.annotations.SerializedName;
 
 public class ExceptionResponse extends BaseResponse {
 
-    @SerializedName("uuidList") @Param(description="List of uuids associated with this error")
+    @SerializedName("uuidList")
+    @Param(description = "List of uuids associated with this error")
     private List<ExceptionProxyObject> idList;
 
-    @SerializedName("errorcode") @Param(description="numeric code associated with this error")
+    @SerializedName("errorcode")
+    @Param(description = "numeric code associated with this error")
     private Integer errorCode;
 
-    @SerializedName("cserrorcode") @Param(description="cloudstack exception error code associated with this error")
+    @SerializedName("cserrorcode")
+    @Param(description = "cloudstack exception error code associated with this error")
     private Integer csErrorCode;
 
-    @SerializedName("errortext") @Param(description="the text associated with this error")
+    @SerializedName("errortext")
+    @Param(description = "the text associated with this error")
     private String errorText = "Command failed due to Internal Server Error";
 
-    public ExceptionResponse(){
+    public ExceptionResponse() {
         idList = new ArrayList<ExceptionProxyObject>();
     }
-    
+
     public Integer getErrorCode() {
         return errorCode;
     }

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/ExternalFirewallResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ExternalFirewallResponse.java b/api/src/org/apache/cloudstack/api/response/ExternalFirewallResponse.java
index 50f5233..aee71b0 100644
--- a/api/src/org/apache/cloudstack/api/response/ExternalFirewallResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ExternalFirewallResponse.java
@@ -23,124 +23,135 @@ import com.google.gson.annotations.SerializedName;
 
 public class ExternalFirewallResponse extends NetworkDeviceResponse {
 
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the external firewall")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the external firewall")
     private String id;
 
-    @SerializedName(ApiConstants.ZONE_ID) @Param(description="the zone ID of the external firewall")
+    @SerializedName(ApiConstants.ZONE_ID)
+    @Param(description = "the zone ID of the external firewall")
     private String zoneId;
 
-    @SerializedName(ApiConstants.IP_ADDRESS) @Param(description="the management IP address of the external firewall")
+    @SerializedName(ApiConstants.IP_ADDRESS)
+    @Param(description = "the management IP address of the external firewall")
     private String ipAddress;
 
-    @SerializedName(ApiConstants.USERNAME) @Param(description="the username that's used to log in to the external firewall")
+    @SerializedName(ApiConstants.USERNAME)
+    @Param(description = "the username that's used to log in to the external firewall")
     private String username;
 
-    @SerializedName(ApiConstants.PUBLIC_INTERFACE) @Param(description="the public interface of the external firewall")
+    @SerializedName(ApiConstants.PUBLIC_INTERFACE)
+    @Param(description = "the public interface of the external firewall")
     private String publicInterface;
 
-    @SerializedName(ApiConstants.USAGE_INTERFACE) @Param(description="the usage interface of the external firewall")
+    @SerializedName(ApiConstants.USAGE_INTERFACE)
+    @Param(description = "the usage interface of the external firewall")
     private String usageInterface;
 
-    @SerializedName(ApiConstants.PRIVATE_INTERFACE) @Param(description="the private interface of the external firewall")
+    @SerializedName(ApiConstants.PRIVATE_INTERFACE)
+    @Param(description = "the private interface of the external firewall")
     private String privateInterface;
 
-    @SerializedName(ApiConstants.PUBLIC_ZONE) @Param(description="the public security zone of the external firewall")
+    @SerializedName(ApiConstants.PUBLIC_ZONE)
+    @Param(description = "the public security zone of the external firewall")
     private String publicZone;
 
-    @SerializedName(ApiConstants.PRIVATE_ZONE) @Param(description="the private security zone of the external firewall")
+    @SerializedName(ApiConstants.PRIVATE_ZONE)
+    @Param(description = "the private security zone of the external firewall")
     private String privateZone;
 
-    @SerializedName(ApiConstants.NUM_RETRIES) @Param(description="the number of times to retry requests to the external firewall")
+    @SerializedName(ApiConstants.NUM_RETRIES)
+    @Param(description = "the number of times to retry requests to the external firewall")
     private String numRetries;
 
-    @SerializedName(ApiConstants.TIMEOUT) @Param(description="the timeout (in seconds) for requests to the external firewall")
+    @SerializedName(ApiConstants.TIMEOUT)
+    @Param(description = "the timeout (in seconds) for requests to the external firewall")
     private String timeout;
 
     public String getId() {
-    	return id;
+        return id;
     }
 
     public void setId(String id) {
-    	this.id = id;
+        this.id = id;
     }
 
     public String getZoneId() {
-    	return zoneId;
+        return zoneId;
     }
 
     public void setZoneId(String zoneId) {
-    	this.zoneId = zoneId;
+        this.zoneId = zoneId;
     }
 
     public String getIpAddress() {
-    	return ipAddress;
+        return ipAddress;
     }
 
     public void setIpAddress(String ipAddress) {
-    	this.ipAddress = ipAddress;
+        this.ipAddress = ipAddress;
     }
 
     public String getUsername() {
-    	return username;
+        return username;
     }
 
     public void setUsername(String username) {
-    	this.username = username;
+        this.username = username;
     }
 
     public String getPublicInterface() {
-    	return publicInterface;
+        return publicInterface;
     }
 
     public void setPublicInterface(String publicInterface) {
-    	this.publicInterface = publicInterface;
+        this.publicInterface = publicInterface;
     }
 
     public String getUsageInterface() {
-    	return usageInterface;
+        return usageInterface;
     }
 
     public void setUsageInterface(String usageInterface) {
-    	this.usageInterface = usageInterface;
+        this.usageInterface = usageInterface;
     }
 
     public String getPrivateInterface() {
-    	return privateInterface;
+        return privateInterface;
     }
 
     public void setPrivateInterface(String privateInterface) {
-    	this.privateInterface = privateInterface;
+        this.privateInterface = privateInterface;
     }
 
     public String getPublicZone() {
-    	return publicZone;
+        return publicZone;
     }
 
     public void setPublicZone(String publicZone) {
-    	this.publicZone = publicZone;
+        this.publicZone = publicZone;
     }
 
     public String getPrivateZone() {
-    	return privateZone;
+        return privateZone;
     }
 
     public void setPrivateZone(String privateZone) {
-    	this.privateZone = privateZone;
+        this.privateZone = privateZone;
     }
 
     public String getNumRetries() {
-    	return numRetries;
+        return numRetries;
     }
 
     public void setNumRetries(String numRetries) {
-    	this.numRetries = numRetries;
+        this.numRetries = numRetries;
     }
 
     public String getTimeout() {
-    	return timeout;
+        return timeout;
     }
 
     public void setTimeout(String timeout) {
-    	this.timeout = timeout;
+        this.timeout = timeout;
     }
 }

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/ExternalLoadBalancerResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ExternalLoadBalancerResponse.java b/api/src/org/apache/cloudstack/api/response/ExternalLoadBalancerResponse.java
index 5a323a7..770a6e2 100644
--- a/api/src/org/apache/cloudstack/api/response/ExternalLoadBalancerResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ExternalLoadBalancerResponse.java
@@ -23,81 +23,88 @@ import com.google.gson.annotations.SerializedName;
 
 public class ExternalLoadBalancerResponse extends NetworkDeviceResponse {
 
-	@SerializedName(ApiConstants.ID) @Param(description="the ID of the external load balancer")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the external load balancer")
     private String id;
 
-    @SerializedName(ApiConstants.ZONE_ID) @Param(description="the zone ID of the external load balancer")
+    @SerializedName(ApiConstants.ZONE_ID)
+    @Param(description = "the zone ID of the external load balancer")
     private String zoneId;
 
-    @SerializedName(ApiConstants.IP_ADDRESS) @Param(description="the management IP address of the external load balancer")
+    @SerializedName(ApiConstants.IP_ADDRESS)
+    @Param(description = "the management IP address of the external load balancer")
     private String ipAddress;
 
-    @SerializedName(ApiConstants.USERNAME) @Param(description="the username that's used to log in to the external load balancer")
+    @SerializedName(ApiConstants.USERNAME)
+    @Param(description = "the username that's used to log in to the external load balancer")
     private String username;
 
-    @SerializedName(ApiConstants.PUBLIC_INTERFACE) @Param(description="the public interface of the external load balancer")
+    @SerializedName(ApiConstants.PUBLIC_INTERFACE)
+    @Param(description = "the public interface of the external load balancer")
     private String publicInterface;
 
-    @SerializedName(ApiConstants.PRIVATE_INTERFACE) @Param(description="the private interface of the external load balancer")
+    @SerializedName(ApiConstants.PRIVATE_INTERFACE)
+    @Param(description = "the private interface of the external load balancer")
     private String privateInterface;
 
-    @SerializedName(ApiConstants.NUM_RETRIES) @Param(description="the number of times to retry requests to the external load balancer")
+    @SerializedName(ApiConstants.NUM_RETRIES)
+    @Param(description = "the number of times to retry requests to the external load balancer")
     private String numRetries;
 
-	public String getId() {
-    	return id;
+    public String getId() {
+        return id;
     }
 
     public void setId(String id) {
-    	this.id = id;
+        this.id = id;
     }
 
     public String getZoneId() {
-    	return zoneId;
+        return zoneId;
     }
 
     public void setZoneId(String zoneId) {
-    	this.zoneId = zoneId;
+        this.zoneId = zoneId;
     }
 
     public String getIpAddress() {
-    	return ipAddress;
+        return ipAddress;
     }
 
     public void setIpAddress(String ipAddress) {
-    	this.ipAddress = ipAddress;
+        this.ipAddress = ipAddress;
     }
 
     public String getUsername() {
-    	return username;
+        return username;
     }
 
     public void setUsername(String username) {
-    	this.username = username;
+        this.username = username;
     }
 
     public String getPublicInterface() {
-    	return publicInterface;
+        return publicInterface;
     }
 
     public void setPublicInterface(String publicInterface) {
-    	this.publicInterface = publicInterface;
+        this.publicInterface = publicInterface;
     }
 
     public String getPrivateInterface() {
-    	return privateInterface;
+        return privateInterface;
     }
 
     public void setPrivateInterface(String privateInterface) {
-    	this.privateInterface = privateInterface;
+        this.privateInterface = privateInterface;
     }
 
     public String getNumRetries() {
-    	return numRetries;
+        return numRetries;
     }
 
     public void setNumRetries(String numRetries) {
-    	this.numRetries = numRetries;
+        this.numRetries = numRetries;
     }
 
 }

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/ExtractResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/ExtractResponse.java b/api/src/org/apache/cloudstack/api/response/ExtractResponse.java
index f5595f9..5aed086 100644
--- a/api/src/org/apache/cloudstack/api/response/ExtractResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/ExtractResponse.java
@@ -25,56 +25,69 @@ import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
 public class ExtractResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the id of extracted object")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the id of extracted object")
     private String id;
 
-    @SerializedName(ApiConstants.NAME) @Param(description="the name of the extracted object")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "the name of the extracted object")
     private String name;
 
-    @SerializedName("extractId") @Param(description="the upload id of extracted object")
+    @SerializedName("extractId")
+    @Param(description = "the upload id of extracted object")
     private String uploadId;
 
-    @SerializedName("uploadpercentage") @Param(description="the percentage of the entity uploaded to the specified location")
+    @SerializedName("uploadpercentage")
+    @Param(description = "the percentage of the entity uploaded to the specified location")
     private Integer uploadPercent;
 
-    @SerializedName("status") @Param(description="the status of the extraction")
+    @SerializedName("status")
+    @Param(description = "the status of the extraction")
     private String status;
 
-    @SerializedName("accountid") @Param(description="the account id to which the extracted object belongs")
+    @SerializedName("accountid")
+    @Param(description = "the account id to which the extracted object belongs")
     private String accountId;
 
-    @SerializedName("resultstring") @Param(includeInApiDoc=false)
+    @SerializedName("resultstring")
+    @Param(includeInApiDoc = false)
     private String resultString;
 
-    @SerializedName(ApiConstants.CREATED) @Param(description="the time and date the object was created")
+    @SerializedName(ApiConstants.CREATED)
+    @Param(description = "the time and date the object was created")
     private Date createdDate;
 
-    @SerializedName(ApiConstants.STATE) @Param(description="the state of the extracted object")
+    @SerializedName(ApiConstants.STATE)
+    @Param(description = "the state of the extracted object")
     private String state;
 
-    @SerializedName("storagetype") @Param(description="type of the storage")
+    @SerializedName("storagetype")
+    @Param(description = "type of the storage")
     private String storageType;
 
     @SerializedName("storage")
     private String storage;
 
-    @SerializedName(ApiConstants.ZONE_ID) @Param(description="zone ID the object was extracted from")
+    @SerializedName(ApiConstants.ZONE_ID)
+    @Param(description = "zone ID the object was extracted from")
     private String zoneId;
 
-    @SerializedName(ApiConstants.ZONE_NAME) @Param(description="zone name the object was extracted from")
+    @SerializedName(ApiConstants.ZONE_NAME)
+    @Param(description = "zone name the object was extracted from")
     private String zoneName;
 
-    @SerializedName("extractMode") @Param(description="the mode of extraction - upload or download")
+    @SerializedName("extractMode")
+    @Param(description = "the mode of extraction - upload or download")
     private String mode;
 
-    @SerializedName(ApiConstants.URL) @Param(description="if mode = upload then url of the uploaded entity. if mode = download the url from which the entity can be downloaded")
+    @SerializedName(ApiConstants.URL)
+    @Param(description = "if mode = upload then url of the uploaded entity. if mode = download the url from which the entity can be downloaded")
     private String url;
 
-    public ExtractResponse(){
+    public ExtractResponse() {
     }
 
-    public ExtractResponse(String typeId, String typeName, String accountId,
-            String state, String uploadId) {
+    public ExtractResponse(String typeId, String typeName, String accountId, String state, String uploadId) {
         this.id = typeId;
         this.name = typeName;
         this.accountId = accountId;
@@ -90,7 +103,6 @@ public class ExtractResponse extends BaseResponse {
         this.id = id;
     }
 
-
     public String getName() {
         return name;
     }

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/FirewallResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/FirewallResponse.java b/api/src/org/apache/cloudstack/api/response/FirewallResponse.java
index 13a04b6..6e154f9 100644
--- a/api/src/org/apache/cloudstack/api/response/FirewallResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/FirewallResponse.java
@@ -26,40 +26,52 @@ import com.google.gson.annotations.SerializedName;
 
 @SuppressWarnings("unused")
 public class FirewallResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the firewall rule")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the firewall rule")
     private String id;
 
-    @SerializedName(ApiConstants.PROTOCOL) @Param(description="the protocol of the firewall rule")
+    @SerializedName(ApiConstants.PROTOCOL)
+    @Param(description = "the protocol of the firewall rule")
     private String protocol;
 
-    @SerializedName(ApiConstants.START_PORT) @Param(description="the starting port of firewall rule's port range")
+    @SerializedName(ApiConstants.START_PORT)
+    @Param(description = "the starting port of firewall rule's port range")
     private String startPort;
 
-    @SerializedName(ApiConstants.END_PORT)  @Param(description = "the ending port of firewall rule's port range")
+    @SerializedName(ApiConstants.END_PORT)
+    @Param(description = "the ending port of firewall rule's port range")
     private String endPort;
 
-    @SerializedName(ApiConstants.IP_ADDRESS_ID) @Param(description="the public ip address id for the firewall rule")
+    @SerializedName(ApiConstants.IP_ADDRESS_ID)
+    @Param(description = "the public ip address id for the firewall rule")
     private String publicIpAddressId;
 
-    @SerializedName(ApiConstants.NETWORK_ID) @Param(description="the network id of the firewall rule")
+    @SerializedName(ApiConstants.NETWORK_ID)
+    @Param(description = "the network id of the firewall rule")
     private String networkId;
 
-    @SerializedName(ApiConstants.IP_ADDRESS) @Param(description="the public ip address for the firewall rule")
+    @SerializedName(ApiConstants.IP_ADDRESS)
+    @Param(description = "the public ip address for the firewall rule")
     private String publicIpAddress;
 
-    @SerializedName(ApiConstants.STATE) @Param(description="the state of the rule")
+    @SerializedName(ApiConstants.STATE)
+    @Param(description = "the state of the rule")
     private String state;
 
-    @SerializedName(ApiConstants.CIDR_LIST) @Param(description="the cidr list to forward traffic from")
+    @SerializedName(ApiConstants.CIDR_LIST)
+    @Param(description = "the cidr list to forward traffic from")
     private String cidrList;
 
-    @SerializedName(ApiConstants.ICMP_TYPE) @Param(description= "type of the icmp message being sent")
+    @SerializedName(ApiConstants.ICMP_TYPE)
+    @Param(description = "type of the icmp message being sent")
     private Integer icmpType;
 
-    @SerializedName(ApiConstants.ICMP_CODE) @Param(description = "error code for this icmp message")
+    @SerializedName(ApiConstants.ICMP_CODE)
+    @Param(description = "error code for this icmp message")
     private Integer icmpCode;
 
-    @SerializedName(ApiConstants.TAGS)  @Param(description="the list of resource tags associated with the rule", responseObject = ResourceTagResponse.class)
+    @SerializedName(ApiConstants.TAGS)
+    @Param(description = "the list of resource tags associated with the rule", responseObject = ResourceTagResponse.class)
     private List<ResourceTagResponse> tags;
 
     public void setId(String id) {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/FirewallRuleResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/FirewallRuleResponse.java b/api/src/org/apache/cloudstack/api/response/FirewallRuleResponse.java
index 20ea407..08d6823 100644
--- a/api/src/org/apache/cloudstack/api/response/FirewallRuleResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/FirewallRuleResponse.java
@@ -26,57 +26,72 @@ import com.cloud.network.rules.FirewallRule;
 import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=FirewallRule.class)
+@EntityReference(value = FirewallRule.class)
 @SuppressWarnings("unused")
 public class FirewallRuleResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the port forwarding rule")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the port forwarding rule")
     private String id;
 
-    @SerializedName(ApiConstants.PRIVATE_START_PORT) @Param(description = "the starting port of port forwarding rule's private port range")
+    @SerializedName(ApiConstants.PRIVATE_START_PORT)
+    @Param(description = "the starting port of port forwarding rule's private port range")
     private String privateStartPort;
 
-    @SerializedName(ApiConstants.PRIVATE_END_PORT) @Param(description = "the ending port of port forwarding rule's private port range")
+    @SerializedName(ApiConstants.PRIVATE_END_PORT)
+    @Param(description = "the ending port of port forwarding rule's private port range")
     private String privateEndPort;
 
-    @SerializedName(ApiConstants.PROTOCOL) @Param(description="the protocol of the port forwarding rule")
+    @SerializedName(ApiConstants.PROTOCOL)
+    @Param(description = "the protocol of the port forwarding rule")
     private String protocol;
 
-    @SerializedName(ApiConstants.PUBLIC_START_PORT) @Param(description="the starting port of port forwarding rule's public port range")
+    @SerializedName(ApiConstants.PUBLIC_START_PORT)
+    @Param(description = "the starting port of port forwarding rule's public port range")
     private String publicStartPort;
 
-    @SerializedName(ApiConstants.PUBLIC_END_PORT)  @Param(description = "the ending port of port forwarding rule's private port range")
+    @SerializedName(ApiConstants.PUBLIC_END_PORT)
+    @Param(description = "the ending port of port forwarding rule's private port range")
     private String publicEndPort;
 
-    @SerializedName(ApiConstants.VIRTUAL_MACHINE_ID) @Param(description="the VM ID for the port forwarding rule")
+    @SerializedName(ApiConstants.VIRTUAL_MACHINE_ID)
+    @Param(description = "the VM ID for the port forwarding rule")
     private String virtualMachineId;
 
-    @SerializedName("virtualmachinename") @Param(description="the VM name for the port forwarding rule")
+    @SerializedName("virtualmachinename")
+    @Param(description = "the VM name for the port forwarding rule")
     private String virtualMachineName;
 
-    @SerializedName("virtualmachinedisplayname") @Param(description="the VM display name for the port forwarding rule")
+    @SerializedName("virtualmachinedisplayname")
+    @Param(description = "the VM display name for the port forwarding rule")
     private String virtualMachineDisplayName;
 
-    @SerializedName(ApiConstants.IP_ADDRESS_ID) @Param(description="the public ip address id for the port forwarding rule")
+    @SerializedName(ApiConstants.IP_ADDRESS_ID)
+    @Param(description = "the public ip address id for the port forwarding rule")
     private String publicIpAddressId;
 
-    @SerializedName(ApiConstants.IP_ADDRESS) @Param(description="the public ip address for the port forwarding rule")
+    @SerializedName(ApiConstants.IP_ADDRESS)
+    @Param(description = "the public ip address for the port forwarding rule")
     private String publicIpAddress;
 
-    @SerializedName(ApiConstants.STATE) @Param(description="the state of the rule")
+    @SerializedName(ApiConstants.STATE)
+    @Param(description = "the state of the rule")
     private String state;
 
-    @SerializedName(ApiConstants.CIDR_LIST) @Param(description="the cidr list to forward traffic from")
+    @SerializedName(ApiConstants.CIDR_LIST)
+    @Param(description = "the cidr list to forward traffic from")
     private String cidrList;
 
-    @SerializedName(ApiConstants.TAGS)  @Param(description="the list of resource tags associated with the rule", responseObject = ResourceTagResponse.class)
+    @SerializedName(ApiConstants.TAGS)
+    @Param(description = "the list of resource tags associated with the rule", responseObject = ResourceTagResponse.class)
     private List<ResourceTagResponse> tags;
 
-    @SerializedName(ApiConstants.VM_GUEST_IP) @Param(description="the vm ip address for the port forwarding rule")
+    @SerializedName(ApiConstants.VM_GUEST_IP)
+    @Param(description = "the vm ip address for the port forwarding rule")
     private String destNatVmIp;
-    
-    @SerializedName(ApiConstants.NETWORK_ID) @Param(description="the id of the guest network the port forwarding rule belongs to")
-    private String networkId;
 
+    @SerializedName(ApiConstants.NETWORK_ID)
+    @Param(description = "the id of the guest network the port forwarding rule belongs to")
+    private String networkId;
 
     public String getDestNatVmIp() {
         return destNatVmIp;
@@ -86,7 +101,6 @@ public class FirewallRuleResponse extends BaseResponse {
         this.destNatVmIp = destNatVmIp;
     }
 
-
     @Override
     public String getObjectId() {
         return this.getId();

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/GetVMPasswordResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/GetVMPasswordResponse.java b/api/src/org/apache/cloudstack/api/response/GetVMPasswordResponse.java
index 56ced5b..2dff790 100644
--- a/api/src/org/apache/cloudstack/api/response/GetVMPasswordResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/GetVMPasswordResponse.java
@@ -23,10 +23,12 @@ import com.google.gson.annotations.SerializedName;
 
 public class GetVMPasswordResponse extends BaseResponse {
 
-    @SerializedName("encryptedpassword") @Param(description="The encrypted password of the VM")
+    @SerializedName("encryptedpassword")
+    @Param(description = "The encrypted password of the VM")
     private String encryptedPassword;
 
-    public GetVMPasswordResponse() {}
+    public GetVMPasswordResponse() {
+    }
 
     public GetVMPasswordResponse(String responseName, String encryptedPassword) {
         setResponseName(responseName);

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/GlobalLoadBalancerResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/GlobalLoadBalancerResponse.java b/api/src/org/apache/cloudstack/api/response/GlobalLoadBalancerResponse.java
index 9f5139d..504cfd9 100644
--- a/api/src/org/apache/cloudstack/api/response/GlobalLoadBalancerResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/GlobalLoadBalancerResponse.java
@@ -25,7 +25,7 @@ import org.apache.cloudstack.api.EntityReference;
 
 import java.util.List;
 
-@EntityReference(value= GlobalLoadBalancerRule.class)
+@EntityReference(value = GlobalLoadBalancerRule.class)
 public class GlobalLoadBalancerResponse extends BaseResponse implements ControlledEntityResponse {
 
     @SerializedName(ApiConstants.ID)
@@ -64,10 +64,12 @@ public class GlobalLoadBalancerResponse extends BaseResponse implements Controll
     @Param(description = "the account of the load balancer rule")
     private String accountName;
 
-    @SerializedName(ApiConstants.PROJECT_ID) @Param(description="the project id of the load balancer")
+    @SerializedName(ApiConstants.PROJECT_ID)
+    @Param(description = "the project id of the load balancer")
     private String projectId;
 
-    @SerializedName(ApiConstants.PROJECT) @Param(description="the project name of the load balancer")
+    @SerializedName(ApiConstants.PROJECT)
+    @Param(description = "the project name of the load balancer")
     private String projectName;
 
     @SerializedName(ApiConstants.DOMAIN_ID)
@@ -79,7 +81,7 @@ public class GlobalLoadBalancerResponse extends BaseResponse implements Controll
     private String domainName;
 
     @SerializedName(ApiConstants.LOAD_BALANCER_RULE)
-    @Param(description="List of load balancer rules that are part of GSLB rule", responseObject = LoadBalancerResponse.class)
+    @Param(description = "List of load balancer rules that are part of GSLB rule", responseObject = LoadBalancerResponse.class)
     private List<LoadBalancerResponse> siteLoadBalancers;
 
     public void setRegionIdId(Integer regionId) {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/GuestOSCategoryResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/GuestOSCategoryResponse.java b/api/src/org/apache/cloudstack/api/response/GuestOSCategoryResponse.java
index eab6bba..112c50f 100644
--- a/api/src/org/apache/cloudstack/api/response/GuestOSCategoryResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/GuestOSCategoryResponse.java
@@ -24,12 +24,14 @@ import com.cloud.serializer.Param;
 import com.cloud.storage.GuestOsCategory;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=GuestOsCategory.class)
+@EntityReference(value = GuestOsCategory.class)
 public class GuestOSCategoryResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the OS category")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the OS category")
     private String id;
 
-    @SerializedName(ApiConstants.NAME) @Param(description="the name of the OS category")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "the name of the OS category")
     private String name;
 
     public String getId() {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/GuestOSResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/GuestOSResponse.java b/api/src/org/apache/cloudstack/api/response/GuestOSResponse.java
index af3aea9..02bd177 100644
--- a/api/src/org/apache/cloudstack/api/response/GuestOSResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/GuestOSResponse.java
@@ -24,15 +24,18 @@ import com.cloud.serializer.Param;
 import com.cloud.storage.GuestOS;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=GuestOS.class)
+@EntityReference(value = GuestOS.class)
 public class GuestOSResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the OS type")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the OS type")
     private String id;
 
-    @SerializedName(ApiConstants.OS_CATEGORY_ID) @Param(description="the ID of the OS category")
+    @SerializedName(ApiConstants.OS_CATEGORY_ID)
+    @Param(description = "the ID of the OS category")
     private String osCategoryId;
 
-    @SerializedName(ApiConstants.DESCRIPTION) @Param(description="the name/description of the OS type")
+    @SerializedName(ApiConstants.DESCRIPTION)
+    @Param(description = "the name/description of the OS type")
     private String description;
 
     public String getId() {

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/GuestVlanRangeResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/GuestVlanRangeResponse.java b/api/src/org/apache/cloudstack/api/response/GuestVlanRangeResponse.java
index bf19688..42ab661 100644
--- a/api/src/org/apache/cloudstack/api/response/GuestVlanRangeResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/GuestVlanRangeResponse.java
@@ -24,37 +24,45 @@ import org.apache.cloudstack.api.EntityReference;
 
 import com.cloud.network.GuestVlan;
 
-@EntityReference(value=GuestVlan.class)
+@EntityReference(value = GuestVlan.class)
 @SuppressWarnings("unused")
 public class GuestVlanRangeResponse extends BaseResponse implements ControlledEntityResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the guest VLAN range")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the guest VLAN range")
     private String id;
 
-    @SerializedName(ApiConstants.ACCOUNT) @Param(description="the account of the guest VLAN range")
+    @SerializedName(ApiConstants.ACCOUNT)
+    @Param(description = "the account of the guest VLAN range")
     private String accountName;
 
-    @SerializedName(ApiConstants.DOMAIN_ID) @Param(description="the domain ID of the guest VLAN range")
+    @SerializedName(ApiConstants.DOMAIN_ID)
+    @Param(description = "the domain ID of the guest VLAN range")
     private String domainId;
 
-    @SerializedName(ApiConstants.DOMAIN) @Param(description="the domain name of the guest VLAN range")
+    @SerializedName(ApiConstants.DOMAIN)
+    @Param(description = "the domain name of the guest VLAN range")
     private String domainName;
 
-    @SerializedName(ApiConstants.GUEST_VLAN_RANGE) @Param(description="the guest VLAN range")
+    @SerializedName(ApiConstants.GUEST_VLAN_RANGE)
+    @Param(description = "the guest VLAN range")
     private String guestVlanRange;
 
-    @SerializedName(ApiConstants.PROJECT_ID) @Param(description="the project id of the guest vlan range")
+    @SerializedName(ApiConstants.PROJECT_ID)
+    @Param(description = "the project id of the guest vlan range")
     private String projectId;
 
-    @SerializedName(ApiConstants.PROJECT) @Param(description="the project name of the guest vlan range")
+    @SerializedName(ApiConstants.PROJECT)
+    @Param(description = "the project name of the guest vlan range")
     private String projectName;
 
-    @SerializedName(ApiConstants.PHYSICAL_NETWORK_ID) @Param(description="the physical network of the guest vlan range")
+    @SerializedName(ApiConstants.PHYSICAL_NETWORK_ID)
+    @Param(description = "the physical network of the guest vlan range")
     private Long physicalNetworkId;
 
-    @SerializedName(ApiConstants.ZONE_ID) @Param(description="the zone of the guest vlan range")
+    @SerializedName(ApiConstants.ZONE_ID)
+    @Param(description = "the zone of the guest vlan range")
     private Long zoneId;
 
-
     public void setId(String id) {
         this.id = id;
     }

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/8d627446/api/src/org/apache/cloudstack/api/response/HostForMigrationResponse.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/response/HostForMigrationResponse.java b/api/src/org/apache/cloudstack/api/response/HostForMigrationResponse.java
index fde2440..48dd9bf1e 100644
--- a/api/src/org/apache/cloudstack/api/response/HostForMigrationResponse.java
+++ b/api/src/org/apache/cloudstack/api/response/HostForMigrationResponse.java
@@ -28,138 +28,182 @@ import com.cloud.hypervisor.Hypervisor.HypervisorType;
 import com.cloud.serializer.Param;
 import com.google.gson.annotations.SerializedName;
 
-@EntityReference(value=Host.class)
+@EntityReference(value = Host.class)
 public class HostForMigrationResponse extends BaseResponse {
-    @SerializedName(ApiConstants.ID) @Param(description="the ID of the host")
+    @SerializedName(ApiConstants.ID)
+    @Param(description = "the ID of the host")
     private String id;
 
-    @SerializedName(ApiConstants.NAME) @Param(description="the name of the host")
+    @SerializedName(ApiConstants.NAME)
+    @Param(description = "the name of the host")
     private String name;
 
-    @SerializedName(ApiConstants.STATE) @Param(description="the state of the host")
+    @SerializedName(ApiConstants.STATE)
+    @Param(description = "the state of the host")
     private Status state;
 
-    @SerializedName("disconnected") @Param(description="true if the host is disconnected. False otherwise.")
+    @SerializedName("disconnected")
+    @Param(description = "true if the host is disconnected. False otherwise.")
     private Date disconnectedOn;
 
-    @SerializedName(ApiConstants.TYPE) @Param(description="the host type")
+    @SerializedName(ApiConstants.TYPE)
+    @Param(description = "the host type")
     private Host.Type hostType;
 
-    @SerializedName("oscategoryid") @Param(description="the OS category ID of the host")
+    @SerializedName("oscategoryid")
+    @Param(description = "the OS category ID of the host")
     private String osCategoryId;
 
-    @SerializedName("oscategoryname") @Param(description="the OS category name of the host")
+    @SerializedName("oscategoryname")
+    @Param(description = "the OS category name of the host")
     private String osCategoryName;
 
-    @SerializedName(ApiConstants.IP_ADDRESS) @Param(description="the IP address of the host")
+    @SerializedName(ApiConstants.IP_ADDRESS)
+    @Param(description = "the IP address of the host")
     private String ipAddress;
 
-    @SerializedName(ApiConstants.ZONE_ID) @Param(description="the Zone ID of the host")
+    @SerializedName(ApiConstants.ZONE_ID)
+    @Param(description = "the Zone ID of the host")
     private String zoneId;
 
-    @SerializedName(ApiConstants.ZONE_NAME) @Param(description="the Zone name of the host")
+    @SerializedName(ApiConstants.ZONE_NAME)
+    @Param(description = "the Zone name of the host")
     private String zoneName;
 
-    @SerializedName(ApiConstants.POD_ID) @Param(description="the Pod ID of the host")
+    @SerializedName(ApiConstants.POD_ID)
+    @Param(description = "the Pod ID of the host")
     private String podId;
 
-    @SerializedName("podname") @Param(description="the Pod name of the host")
+    @SerializedName("podname")
+    @Param(description = "the Pod name of the host")
     private String podName;
 
-    @SerializedName("version") @Param(description="the host version")
+    @SerializedName("version")
+    @Param(description = "the host version")
     private String version;
 
-    @SerializedName(ApiConstants.HYPERVISOR) @Param(description="the host hypervisor")
+    @SerializedName(ApiConstants.HYPERVISOR)
+    @Param(description = "the host hypervisor")
     private HypervisorType hypervisor;
 
-    @SerializedName("cpunumber") @Param(description="the CPU number of the host")
+    @SerializedName("cpunumber")
+    @Param(description = "the CPU number of the host")
     private Integer cpuNumber;
 
-    @SerializedName("cpuspeed") @Param(description="the CPU speed of the host")
+    @SerializedName("cpuspeed")
+    @Param(description = "the CPU speed of the host")
     private Long cpuSpeed;
 
-    @SerializedName("cpuallocated") @Param(description="the amount of the host's CPU currently allocated")
+    @SerializedName("cpuallocated")
+    @Param(description = "the amount of the host's CPU currently allocated")
     private String cpuAllocated;
 
-    @SerializedName("cpuused") @Param(description="the amount of the host's CPU currently used")
+    @SerializedName("cpuused")
+    @Param(description = "the amount of the host's CPU currently used")
     private String cpuUsed;
 
-    @SerializedName("cpuwithoverprovisioning") @Param(description="the amount of the host's CPU after applying the cpu.overprovisioning.factor ")
+    @SerializedName("cpuwithoverprovisioning")
+    @Param(description = "the amount of the host's CPU after applying the cpu.overprovisioning.factor ")
     private String cpuWithOverprovisioning;
 
-    @SerializedName("averageload") @Param(description="the cpu average load on the host")
+    @SerializedName("averageload")
+    @Param(description = "the cpu average load on the host")
     private Long averageLoad;
 
-    @SerializedName("networkkbsread") @Param(description="the incoming network traffic on the host")
+    @SerializedName("networkkbsread")
+    @Param(description = "the incoming network traffic on the host")
     private Long networkKbsRead;
 
-    @SerializedName("networkkbswrite") @Param(description="the outgoing network traffic on the host")
+    @SerializedName("networkkbswrite")
+    @Param(description = "the outgoing network traffic on the host")
     private Long networkKbsWrite;
 
-    @SerializedName("memorytotal") @Param(description="the memory total of the host")
+    @SerializedName("memorytotal")
+    @Param(description = "the memory total of the host")
     private Long memoryTotal;
 
-    @SerializedName("memoryallocated") @Param(description="the amount of the host's memory currently allocated")
+    @SerializedName("memoryallocated")
+    @Param(description = "the amount of the host's memory currently allocated")
     private Long memoryAllocated;
 
-    @SerializedName("memoryused") @Param(description="the amount of the host's memory currently used")
+    @SerializedName("memoryused")
+    @Param(description = "the amount of the host's memory currently used")
     private Long memoryUsed;
 
-    @SerializedName("disksizetotal") @Param(description="the total disk size of the host")
+    @SerializedName("disksizetotal")
+    @Param(description = "the total disk size of the host")
     private Long diskSizeTotal;
 
-    @SerializedName("disksizeallocated") @Param(description="the host's currently allocated disk size")
+    @SerializedName("disksizeallocated")
+    @Param(description = "the host's currently allocated disk size")
     private Long diskSizeAllocated;
 
-    @SerializedName("capabilities") @Param(description="capabilities of the host")
+    @SerializedName("capabilities")
+    @Param(description = "capabilities of the host")
     private String capabilities;
 
-    @SerializedName("lastpinged") @Param(description="the date and time the host was last pinged")
+    @SerializedName("lastpinged")
+    @Param(description = "the date and time the host was last pinged")
     private Date lastPinged;
 
-    @SerializedName("managementserverid") @Param(description="the management server ID of the host")
+    @SerializedName("managementserverid")
+    @Param(description = "the management server ID of the host")
     private Long managementServerId;
 
-    @SerializedName("clusterid") @Param(description="the cluster ID of the host")
+    @SerializedName("clusterid")
+    @Param(description = "the cluster ID of the host")
     private String clusterId;
 
-    @SerializedName("clustername") @Param(description="the cluster name of the host")
+    @SerializedName("clustername")
+    @Param(description = "the cluster name of the host")
     private String clusterName;
 
-    @SerializedName("clustertype") @Param(description="the cluster type of the cluster that host belongs to")
+    @SerializedName("clustertype")
+    @Param(description = "the cluster type of the cluster that host belongs to")
     private String clusterType;
 
-    @SerializedName("islocalstorageactive") @Param(description="true if local storage is active, false otherwise")
+    @SerializedName("islocalstorageactive")
+    @Param(description = "true if local storage is active, false otherwise")
     private Boolean localStorageActive;
 
-    @SerializedName(ApiConstants.CREATED) @Param(description="the date and time the host was created")
+    @SerializedName(ApiConstants.CREATED)
+    @Param(description = "the date and time the host was created")
     private Date created;
 
-    @SerializedName("removed") @Param(description="the date and time the host was removed")
+    @SerializedName("removed")
+    @Param(description = "the date and time the host was removed")
     private Date removed;
 
-    @SerializedName("events") @Param(description="events available for the host")
+    @SerializedName("events")
+    @Param(description = "events available for the host")
     private String events;
 
-    @SerializedName("hosttags") @Param(description="comma-separated list of tags for the host")
+    @SerializedName("hosttags")
+    @Param(description = "comma-separated list of tags for the host")
     private String hostTags;
 
-    @SerializedName("hasenoughcapacity") @Param(description="true if this host has enough CPU and RAM capacity to migrate a VM to it, false otherwise")
+    @SerializedName("hasenoughcapacity")
+    @Param(description = "true if this host has enough CPU and RAM capacity to migrate a VM to it, false otherwise")
     private Boolean hasEnoughCapacity;
 
-    @SerializedName("suitableformigration") @Param(description="true if this host is suitable(has enough capacity and satisfies all conditions like hosttags, max guests vm limit etc) to migrate a VM to it , false otherwise")
+    @SerializedName("suitableformigration")
+    @Param(description = "true if this host is suitable(has enough capacity and satisfies all conditions like hosttags, max guests vm limit etc) to migrate a VM to it , false otherwise")
     private Boolean suitableForMigration;
 
-    @SerializedName("requiresStorageMotion") @Param(description="true if migrating a vm to this host requires storage motion, false otherwise")
+    @SerializedName("requiresStorageMotion")
+    @Param(description = "true if migrating a vm to this host requires storage motion, false otherwise")
     private Boolean requiresStorageMotion;
 
-    @SerializedName("resourcestate") @Param(description="the resource state of the host")
+    @SerializedName("resourcestate")
+    @Param(description = "the resource state of the host")
     private String resourceState;
 
-    @SerializedName(ApiConstants.HYPERVISOR_VERSION) @Param(description="the hypervisor version")
+    @SerializedName(ApiConstants.HYPERVISOR_VERSION)
+    @Param(description = "the hypervisor version")
     private String hypervisorVersion;
 
-    @SerializedName(ApiConstants.HA_HOST) @Param(description="true if the host is Ha host (dedicated to vms started by HA process; false otherwise")
+    @SerializedName(ApiConstants.HA_HOST)
+    @Param(description = "true if the host is Ha host (dedicated to vms started by HA process; false otherwise")
     private Boolean haHost;
 
     @Override