summaryrefslogtreecommitdiffstats
path: root/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Tenant.java
diff options
context:
space:
mode:
Diffstat (limited to 'keystone-model/src/main/java/com/woorea/openstack/keystone/model/Tenant.java')
-rw-r--r--keystone-model/src/main/java/com/woorea/openstack/keystone/model/Tenant.java29
1 files changed, 14 insertions, 15 deletions
diff --git a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Tenant.java b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Tenant.java
index a8a84fd..ee195de 100644
--- a/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Tenant.java
+++ b/keystone-model/src/main/java/com/woorea/openstack/keystone/model/Tenant.java
@@ -17,38 +17,36 @@
package com.woorea.openstack.keystone.model;
import java.io.Serializable;
-
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonRootName;
@JsonRootName("tenant")
-@JsonIgnoreProperties(ignoreUnknown=true)
+@JsonIgnoreProperties(ignoreUnknown = true)
public class Tenant implements Serializable {
private String id;
-
+
private String name;
-
+
private String description;
-
+
private Boolean enabled;
-
+
public Tenant(String name, String description, Boolean enabled) {
this.name = name;
this.description = description;
this.enabled = enabled;
}
-
+
public Tenant(String name, String description) {
this(name, description, Boolean.TRUE);
}
-
+
public Tenant(String name) {
this(name, null);
}
-
- public Tenant() {
- }
+
+ public Tenant() {}
/**
* @return the id
@@ -106,13 +104,14 @@ public class Tenant implements Serializable {
this.enabled = enabled;
}
- /* (non-Javadoc)
+ /*
+ * (non-Javadoc)
+ *
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
- return "Tenant [id=" + id + ", name=" + name + ", description="
- + description + ", enabled=" + enabled + "]";
+ return "Tenant [id=" + id + ", name=" + name + ", description=" + description + ", enabled=" + enabled + "]";
}
-
+
}