From 0244e4d12a571f9fb6134284d10867908da59632 Mon Sep 17 00:00:00 2001 From: seshukm Date: Wed, 25 Jul 2018 18:17:10 +0800 Subject: code issues fix in model keystone Issue-ID: SO-729 Change-Id: I39f5fbeaf0fdae0581f468ab0748a5042246d5c5 Signed-off-by: seshukm --- .../woorea/openstack/keystone/model/Service.java | 116 ++++++++++----------- 1 file changed, 58 insertions(+), 58 deletions(-) (limited to 'keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java') diff --git a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java index 9c40e24..c5a1650 100644 --- a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java +++ b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java @@ -23,70 +23,70 @@ import org.codehaus.jackson.map.annotate.JsonRootName; @JsonRootName("OS-KSADM:service") public class Service implements Serializable { - private String id; - - private String type; - - private String name; - - private String description; + private String id; + + private String type; + + private String name; + + private String description; - /** - * @return the id - */ - public String getId() { - return id; - } + /** + * @return the id + */ + public String getId() { + return id; + } - /** - * @return the type - */ - public String getType() { - return type; - } + /** + * @return the type + */ + public String getType() { + return type; + } - /** - * @param type the type to set - */ - public void setType(String type) { - this.type = type; - } + /** + * @param type the type to set + */ + public void setType(String type) { + this.type = type; + } - /** - * @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 "Service [id=" + id + ", type=" + type + ", name=" + name - + ", description=" + description + "]"; - } - + /* (non-Javadoc) + * @see java.lang.Object#toString() + */ + @Override + public String toString() { + return "Service [id=" + id + ", type=" + type + ", name=" + name + + ", description=" + description + "]"; + } + } -- cgit 1.2.3-korg