Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / client / sdnc / beans / SDNCProperties.java
index 08be73e..15076fa 100644 (file)
@@ -24,29 +24,34 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
 import org.springframework.context.annotation.Configuration;
 
 @Configuration
-@ConfigurationProperties(prefix="sdnc")
+@ConfigurationProperties(prefix = "sdnc")
 public class SDNCProperties {
 
-       private String host;
-       private String path;
-       private String auth;
-       
-       public String getHost() {
-               return host;
-       }
-       public void setHost(String host) {
-               this.host = host;
-       }
-       public String getPath() {
-               return path;
-       }
-       public void setPath(String path) {
-               this.path = path;
-       }
-       public String getAuth() {
-               return auth;
-       }
-       public void setAuth(String auth) {
-               this.auth = auth;
-       }
+    private String host;
+    private String path;
+    private String auth;
+
+    public String getHost() {
+        return host;
+    }
+
+    public void setHost(String host) {
+        this.host = host;
+    }
+
+    public String getPath() {
+        return path;
+    }
+
+    public void setPath(String path) {
+        this.path = path;
+    }
+
+    public String getAuth() {
+        return auth;
+    }
+
+    public void setAuth(String auth) {
+        this.auth = auth;
+    }
 }