Convert tabs to spaces basic refactoring
[policy/engine.git] / ONAP-REST / src / main / java / org / onap / policy / rest / adapter / ServicesJson.java
index 5cb9e98..30963d9 100644 (file)
@@ -23,22 +23,22 @@ package org.onap.policy.rest.adapter;
 
 public class ServicesJson {
 
-       protected String type;
-       protected String name;
-       // type
-       public String getType() {
-               return type;
-       }
+    protected String type;
+    protected String name;
+    // type
+    public String getType() {
+        return type;
+    }
 
-       public void setType(String type) {
-               this.type = type;
-       }
-       
-       public String getName() {
-               return name;
-       }
+    public void setType(String type) {
+        this.type = type;
+    }
 
-       public void setName(String value) {
-               this.name = value;
-       }
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String value) {
+        this.name = value;
+    }
 }