Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / util / MSAttributeValue.java
index 23b5f86..c8a217d 100644 (file)
 package org.onap.policy.rest.util;
 
 public class MSAttributeValue{
-       public String getName() {
-               return name;
-       }
-       public void setName(String name) {
-               this.name = name;
-       }
-       public String getType() {
-               return type;
-       }
-       public void setType(String type) {
-               this.type = type;
-       }
-       public Boolean getRequired() {
-               return required;
-       }
-       public void setRequired(Boolean required) {
-               this.required = required;
-       }
-       public Boolean getArrayValue() {
-               return arrayValue;
-       }
-       public void setArrayValue(Boolean arrayValue) {
-               this.arrayValue = arrayValue;
-       }
-       public String getDefaultValue() {
-               return defaultValue;
-       }
-       public void setDefaultValue(String defaultValue) {
-               this.defaultValue = defaultValue;
-       }
-       private String name;
-       private String type;
-       private Boolean required;
-       private Boolean arrayValue;
-       private String defaultValue;
+    public String getName() {
+        return name;
+    }
+    public void setName(String name) {
+        this.name = name;
+    }
+    public String getType() {
+        return type;
+    }
+    public void setType(String type) {
+        this.type = type;
+    }
+    public Boolean getRequired() {
+        return required;
+    }
+    public void setRequired(Boolean required) {
+        this.required = required;
+    }
+    public Boolean getArrayValue() {
+        return arrayValue;
+    }
+    public void setArrayValue(Boolean arrayValue) {
+        this.arrayValue = arrayValue;
+    }
+    public String getDefaultValue() {
+        return defaultValue;
+    }
+    public void setDefaultValue(String defaultValue) {
+        this.defaultValue = defaultValue;
+    }
+    private String name;
+    private String type;
+    private Boolean required;
+    private Boolean arrayValue;
+    private String defaultValue;
 
 }