summaryrefslogtreecommitdiffstats
path: root/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:17:10 +0800
committerseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:17:10 +0800
commit0244e4d12a571f9fb6134284d10867908da59632 (patch)
tree46584de8bda5c8db91fe51d75eed5ab3b6dc2b4b /keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java
parentefdf50410fd3d341c0bbb6550ac758549d2bf3f4 (diff)
code issues fix in model keystone
Issue-ID: SO-729 Change-Id: I39f5fbeaf0fdae0581f468ab0748a5042246d5c5 Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Diffstat (limited to 'keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java')
-rw-r--r--keystone-model/src/main/java/com/woorea/openstack/keystone/model/Service.java116
1 files changed, 58 insertions, 58 deletions
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 + "]";
+ }
+
}