rajujith commented on code in PR #7857:
URL: https://github.com/apache/cloudstack/pull/7857#discussion_r2332323395


##########
api/src/main/java/org/apache/cloudstack/api/response/TemplateResponse.java:
##########
@@ -36,177 +36,177 @@
 @SuppressWarnings("unused")
 public class TemplateResponse extends BaseResponseWithTagInformation 
implements ControlledViewEntityResponse, SetResourceIconResponse {
     @SerializedName(ApiConstants.ID)
-    @Param(description = "the template ID")
+    @Param(description = "The Template ID")
     private String id;
 
     @SerializedName(ApiConstants.NAME)
-    @Param(description = "the template name")
+    @Param(description = "The Template name")
     private String name;
 
     @SerializedName(ApiConstants.DISPLAY_TEXT)
-    @Param(description = "the template display text")
+    @Param(description = "The Template display text")
     private String displayText;
 
     @SerializedName(ApiConstants.IS_PUBLIC)
     // propName="public"  (FIXME:  this used to be part of Param annotation, 
do we need it?)
-    @Param(description = "true if this template is a public template, false 
otherwise")
+    @Param(description = "True if this Template is a public Template, false 
otherwise")
     private boolean isPublic;
 
     @SerializedName(ApiConstants.CREATED)
-    @Param(description = "the date this template was created")
+    @Param(description = "The date this Template was created")
     private Date created;
 
     @SerializedName(ApiConstants.REMOVED)
-    @Param(description = "the date this template was removed")
+    @Param(description = "The date this Template was removed")
     private Date removed;
 
     @SerializedName(ApiConstants.IS_READY)
     // propName="ready"  (FIXME:  this used to be part of Param annotation, do 
we need it?)
-    @Param(description = "true if the template is ready to be deployed from, 
false otherwise.")
+    @Param(description = "True if the Template is ready to be deployed from, 
false otherwise.")
     private boolean isReady;
 
     @SerializedName(ApiConstants.PASSWORD_ENABLED)
-    @Param(description = "true if the reset password feature is enabled, false 
otherwise")
+    @Param(description = "True if the reset password feature is enabled, false 
otherwise")
     private Boolean passwordEnabled;
 
     @SerializedName(ApiConstants.FORMAT)
-    @Param(description = "the format of the template.")
+    @Param(description = "The format of the Template.")
     private ImageFormat format;
 
     @SerializedName(ApiConstants.BOOTABLE)
-    @Param(description = "true if the ISO is bootable, false otherwise")
+    @Param(description = "True if the ISO is bootable, false otherwise")
     private Boolean bootable;
 
     @SerializedName(ApiConstants.IS_FEATURED)
-    @Param(description = "true if this template is a featured template, false 
otherwise")
+    @Param(description = "True if this Template is a featured Template, false 
otherwise")
     private boolean featured;
 
     @SerializedName(ApiConstants.CROSS_ZONES)
-    @Param(description = "true if the template is managed across all Zones, 
false otherwise")
+    @Param(description = "True if the Template is managed across all Zones, 
false otherwise")
     private boolean crossZones;
 
     @SerializedName(ApiConstants.OS_TYPE_ID)
-    @Param(description = "the ID of the OS type for this template.")
+    @Param(description = "The ID of the OS type for this Template.")
     private String osTypeId;
 
     @SerializedName("ostypename")
-    @Param(description = "the name of the OS type for this template.")
+    @Param(description = "The name of the OS type for this Template.")
     private String osTypeName;
 
     private transient Long osTypeCategoryId;
 
     @SerializedName(ApiConstants.ACCOUNT_ID)
-    @Param(description = "the account id to which the template belongs")
+    @Param(description = "The Account id to which the Template belongs")
     private String accountId;
 
     @SerializedName(ApiConstants.ACCOUNT)
-    @Param(description = "the account name to which the template belongs")
+    @Param(description = "The Account name to which the Template belongs")
     private String account;
 
     //TODO: since a template can be associated to more than one zones, this 
model is not accurate. For backward-compatibility, keep these fields
     // here, but add a zones field to capture multiple zones.
     @SerializedName(ApiConstants.ZONE_ID)
-    @Param(description = "the ID of the zone for this template")
+    @Param(description = "The ID of the zone for this Template")
     private String zoneId;
 
     @SerializedName(ApiConstants.ZONE_NAME)
-    @Param(description = "the name of the zone for this template")
+    @Param(description = "The name of the zone for this Template")
     private String zoneName;
 
     @SerializedName(ApiConstants.STATUS)
-    @Param(description = "the status of the template")
+    @Param(description = "The status of the Template")
     private String status;
 
     @SerializedName(ApiConstants.SIZE)
-    @Param(description = "the size of the template")
+    @Param(description = "The size of the Template")
     private Long size;
 
     @SerializedName(ApiConstants.PHYSICAL_SIZE)
-    @Param(description = "the physical size of the template")
+    @Param(description = "The physical size of the Template")
     private Long physicalSize;
 
     @SerializedName(ApiConstants.TEMPLATE_TYPE)
-    @Param(description = "the type of the template")
+    @Param(description = "The type of the Template")
     private String templateType;
 
     @SerializedName(ApiConstants.HYPERVISOR)
-    @Param(description = "the hypervisor on which the template runs")
+    @Param(description = "The hypervisor on which the Template runs")
     private String hypervisor;
 
     @SerializedName(ApiConstants.DOMAIN)
-    @Param(description = "the name of the domain to which the template 
belongs")
+    @Param(description = "The name of the domain to which the Template 
belongs")
     private String domainName;
 
     @SerializedName(ApiConstants.DOMAIN_PATH)
     @Param(description = "path of the Domain the template belongs to", since = 
"4.19.2.0")
     private String domainPath;
 
     @SerializedName(ApiConstants.DOMAIN_ID)
-    @Param(description = "the ID of the domain to which the template belongs")
+    @Param(description = "The ID of the domain to which the Template belongs")
     private String domainId;
 
     @SerializedName(ApiConstants.IS_EXTRACTABLE)
-    @Param(description = "true if the template is extractable, false 
otherwise")
+    @Param(description = "True if the Template is extractable, false 
otherwise")
     private Boolean extractable;
 
     @SerializedName(ApiConstants.CHECKSUM)
-    @Param(description = "checksum of the template")
+    @Param(description = "Checksum of the Template")
     private String checksum;
 
     @SerializedName(ApiConstants.SOURCETEMPLATEID)
-    @Param(description = "the template ID of the parent template if present")
+    @Param(description = "The Template ID of the parent Template if present")
     private String sourcetemplateId;
 
     @SerializedName(ApiConstants.HOST_ID)
-    @Param(description = "the ID of the secondary storage host for the 
template")
+    @Param(description = "The ID of the secondary storage host for the 
Template")
     private String hostId;
 
     @SerializedName(ApiConstants.HOST_NAME)
-    @Param(description = "the name of the secondary storage host for the 
template")
+    @Param(description = "The name of the secondary storage host for the 
Template")
     private String hostName;
 
     @SerializedName(ApiConstants.TEMPLATE_TAG)
-    @Param(description = "the tag of this template")
+    @Param(description = "The tag of this Template")
     private String templateTag;
 
     @SerializedName(ApiConstants.PROJECT_ID)
-    @Param(description = "the project id of the template")
+    @Param(description = "The project id of the Template")

Review Comment:
   'ID'



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to