summaryrefslogtreecommitdiffstats
path: root/keystone-model/src/main/java/com/woorea/openstack/keystone/v3/model/Role.java
diff options
context:
space:
mode:
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;
+ }
}