summaryrefslogtreecommitdiffstats
path: root/nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2018-07-25 19:08:32 +0800
committerseshukm <seshu.kumar.m@huawei.com>2018-07-25 19:08:32 +0800
commit22fbe41ad4e5360248af984496c3b1dd4b945f56 (patch)
tree44534afad8b315676cea2e9bfb7c85680d04af09 /nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java
parent612e67046968c45e942fb5affcabd38d5dcb3ea5 (diff)
Nova model basic code style fix
Issue-ID: SO-729 Change-Id: I5a1d96bdfae9be81dffeb4d3aea178f2342762fd Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Diffstat (limited to 'nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java')
-rw-r--r--nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java112
1 files changed, 56 insertions, 56 deletions
diff --git a/nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java b/nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java
index 320ad3e..bdf37c2 100644
--- a/nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java
+++ b/nova-model/src/main/java/com/woorea/openstack/nova/model/Extension.java
@@ -25,67 +25,67 @@ import org.codehaus.jackson.map.annotate.JsonRootName;
@JsonRootName("extension")
public class Extension implements Serializable {
- private String alias;
-
- private String description;
-
- private String name;
-
- private String namespace;
-
- private Calendar updated;
-
- private List<Link> links;
+ private String alias;
+
+ private String description;
+
+ private String name;
+
+ private String namespace;
+
+ private Calendar updated;
+
+ private List<Link> links;
- /**
- * @return the alias
- */
- public String getAlias() {
- return alias;
- }
+ /**
+ * @return the alias
+ */
+ public String getAlias() {
+ return alias;
+ }
- /**
- * @return the description
- */
- public String getDescription() {
- return description;
- }
+ /**
+ * @return the description
+ */
+ public String getDescription() {
+ return description;
+ }
- /**
- * @return the name
- */
- public String getName() {
- return name;
- }
+ /**
+ * @return the name
+ */
+ public String getName() {
+ return name;
+ }
- /**
- * @return the namespace
- */
- public String getNamespace() {
- return namespace;
- }
+ /**
+ * @return the namespace
+ */
+ public String getNamespace() {
+ return namespace;
+ }
- /**
- * @return the updated
- */
- public Calendar getUpdated() {
- return updated;
- }
+ /**
+ * @return the updated
+ */
+ public Calendar getUpdated() {
+ return updated;
+ }
- /**
- * @return the links
- */
- public List<Link> getLinks() {
- return links;
- }
+ /**
+ * @return the links
+ */
+ public List<Link> getLinks() {
+ return links;
+ }
- /* (non-Javadoc)
- * @see java.lang.Object#toString()
- */
- @Override
- public String toString() {
- return "Extension [alias=" + alias + ", description=" + description
- + ", name=" + name + ", namespace=" + namespace + "]";
- }
-
+ /* (non-Javadoc)
+ * @see java.lang.Object#toString()
+ */
+ @Override
+ public String toString() {
+ return "Extension [alias=" + alias + ", description=" + description
+ + ", name=" + name + ", namespace=" + namespace + "]";
+ }
+
}