summaryrefslogtreecommitdiffstats
path: root/keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:24:54 +0800
committerseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:24:54 +0800
commita5653b265d45f70c49a472b9298829cb06afe75e (patch)
tree15a4f1e3b4f94a7c971ccfafbd840ec1d90a865a /keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java
parent572d9b8259e2d66abdfb28be503fc62e7732c5b5 (diff)
basic code Issues of keystone model
Issue-ID: SO-729 Change-Id: I176585bd54714fdd891f9e67474fa3b23183fd9b Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Diffstat (limited to 'keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java')
-rw-r--r--keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java98
1 files changed, 49 insertions, 49 deletions
diff --git a/keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java b/keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java
index 325184c..317ea35 100644
--- a/keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java
+++ b/keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java
@@ -23,61 +23,61 @@ import org.codehaus.jackson.map.annotate.JsonRootName;
@JsonRootName("role")
public class Role implements Serializable {
- private String id;
-
- private String name;
-
- private String description;
-
- private String enabled;
+ private String id;
+
+ private String name;
+
+ private String description;
+
+ private String enabled;
- /**
- * @return the id
- */
- public String getId() {
- return id;
- }
+ /**
+ * @return the id
+ */
+ public String getId() {
+ return id;
+ }
- /**
- * @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;
+ }
- /**
- * @return the enabled
- */
- public String getEnabled() {
- return enabled;
- }
+ /**
+ * @return the enabled
+ */
+ public String getEnabled() {
+ return enabled;
+ }
- /**
- * @param enabled the enabled to set
- */
- public void setEnabled(String enabled) {
- this.enabled = enabled;
- }
+ /**
+ * @param enabled the enabled to set
+ */
+ public void setEnabled(String enabled) {
+ this.enabled = enabled;
+ }
}