From 0d4bde1f33803d48c40345ae7b3dfe626752becb Mon Sep 17 00:00:00 2001 From: seshukm Date: Wed, 25 Jul 2018 18:27:32 +0800 Subject: basic code Issues of nova model Issue-ID: SO-729 Change-Id: Ib2081aedf0fd9686977f44be9a94af5215e3394f Signed-off-by: seshukm --- .../openstack/nova/model/SnapshotForCreate.java | 132 ++++++++++----------- 1 file changed, 66 insertions(+), 66 deletions(-) (limited to 'nova-model/src/main/java/com/woorea/openstack/nova/model/SnapshotForCreate.java') diff --git a/nova-model/src/main/java/com/woorea/openstack/nova/model/SnapshotForCreate.java b/nova-model/src/main/java/com/woorea/openstack/nova/model/SnapshotForCreate.java index 4fa37c0..752eb59 100644 --- a/nova-model/src/main/java/com/woorea/openstack/nova/model/SnapshotForCreate.java +++ b/nova-model/src/main/java/com/woorea/openstack/nova/model/SnapshotForCreate.java @@ -23,81 +23,81 @@ import org.codehaus.jackson.map.annotate.JsonRootName; @JsonRootName("snapshot") public class SnapshotForCreate implements Serializable { - - @JsonProperty("volume_id") - private String volumeId; - - private Boolean force; - - @JsonProperty("display_name") - private String name; + + @JsonProperty("volume_id") + private String volumeId; + + private Boolean force; + + @JsonProperty("display_name") + private String name; - @JsonProperty("display_description") - private String description; + @JsonProperty("display_description") + private String description; - /** - * @return the volumeId - */ - public String getVolumeId() { - return volumeId; - } + /** + * @return the volumeId + */ + public String getVolumeId() { + return volumeId; + } - /** - * @param volumeId the volumeId to set - */ - public void setVolumeId(String volumeId) { - this.volumeId = volumeId; - } + /** + * @param volumeId the volumeId to set + */ + public void setVolumeId(String volumeId) { + this.volumeId = volumeId; + } - /** - * @return the force - */ - public Boolean getForce() { - return force; - } + /** + * @return the force + */ + public Boolean getForce() { + return force; + } - /** - * @param force the force to set - */ - public void setForce(Boolean force) { - this.force = force; - } + /** + * @param force the force to set + */ + public void setForce(Boolean force) { + this.force = force; + } - /** - * @return the name - */ - public String getName() { - return name; - } + /** + * @return the name + */ + public String getName() { + return name; + } - /** - * @param name the name to set - */ - public void setName(String name) { - this.name = name; - } + /** + * @param name the name to set + */ + public void setName(String name) { + this.name = name; + } - /** - * @return the description - */ - public String getDescription() { - return description; - } + /** + * @return the description + */ + public String getDescription() { + return description; + } - /** - * @param description the description to set - */ - public void setDescription(String description) { - this.description = description; - } + /** + * @param description the description to set + */ + public void setDescription(String description) { + this.description = description; + } - /* (non-Javadoc) - * @see java.lang.Object#toString() - */ - @Override - public String toString() { - return "SnapshotForCreate [volumeId=" + volumeId + ", force=" + force - + ", name=" + name + ", description=" + description + "]"; - } + /* (non-Javadoc) + * @see java.lang.Object#toString() + */ + @Override + public String toString() { + return "SnapshotForCreate [volumeId=" + volumeId + ", force=" + force + + ", name=" + name + ", description=" + description + "]"; + } } -- cgit 1.2.3-korg