Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / test / java / org / onap / so / client / defaultproperties / DefaultAAIPropertiesImpl.java
index 65c7656..7789386 100644 (file)
@@ -29,65 +29,67 @@ import java.net.URL;
 import java.util.HashMap;
 import java.util.Map;
 import java.util.Properties;
-
 import org.onap.so.client.aai.AAIProperties;
 import org.onap.so.client.aai.AAIVersion;
 
 public class DefaultAAIPropertiesImpl implements AAIProperties {
 
-       
-       final Map<Object, Object> props;
-       public DefaultAAIPropertiesImpl() {
-               File initialFile = new File("src/test/resources/aai.properties");
-               Map<Object, Object> temp;
-               try (InputStream targetStream = new FileInputStream(initialFile)) {
-                       Properties properties = new Properties();
-                       properties.load(targetStream);
-                       temp = properties;
-               } catch (IOException e) {
-                       temp = new HashMap<>();
-               }
-               this.props = temp;
 
-       }
-       
-       public DefaultAAIPropertiesImpl(int port) {
-               File initialFile = new File("src/test/resources/aai.properties");
-               Map<Object, Object> temp;
-               try (InputStream targetStream = new FileInputStream(initialFile)) {
-                       Properties properties = new Properties();
-                       properties.load(targetStream);
-                       temp = properties;
-               } catch (IOException e) {
-                       temp = new HashMap<>();
-               }
-               this.props = temp;
-               this.props.put("aai.endpoint", this.props.get("aai.endpoint").toString().replaceFirst(":\\d+", ":" + port));
+    final Map<Object, Object> props;
+
+    public DefaultAAIPropertiesImpl() {
+        File initialFile = new File("src/test/resources/aai.properties");
+        Map<Object, Object> temp;
+        try (InputStream targetStream = new FileInputStream(initialFile)) {
+            Properties properties = new Properties();
+            properties.load(targetStream);
+            temp = properties;
+        } catch (IOException e) {
+            temp = new HashMap<>();
+        }
+        this.props = temp;
+
+    }
+
+    public DefaultAAIPropertiesImpl(int port) {
+        File initialFile = new File("src/test/resources/aai.properties");
+        Map<Object, Object> temp;
+        try (InputStream targetStream = new FileInputStream(initialFile)) {
+            Properties properties = new Properties();
+            properties.load(targetStream);
+            temp = properties;
+        } catch (IOException e) {
+            temp = new HashMap<>();
+        }
+        this.props = temp;
+        this.props.put("aai.endpoint", this.props.get("aai.endpoint").toString().replaceFirst(":\\d+", ":" + port));
+
+    }
+
+    @Override
+    public URL getEndpoint() throws MalformedURLException {
+        return new URL(props.get("aai.endpoint").toString());
+    }
 
-       }
-       @Override
-       public URL getEndpoint() throws MalformedURLException {
-               return new URL(props.get("aai.endpoint").toString());
-       }
+    @Override
+    public String getSystemName() {
+        return "MSO";
+    }
 
-       @Override
-       public String getSystemName() {
-               return "MSO";
-       }
-       @Override
-       public AAIVersion getDefaultVersion() {
-               return AAIVersion.LATEST;
-       }
+    @Override
+    public AAIVersion getDefaultVersion() {
+        return AAIVersion.LATEST;
+    }
 
-       @Override
-       public String getAuth() {
-               Object value = props.get("aai.auth");
-               return value == null ? null : value.toString();
-       }
+    @Override
+    public String getAuth() {
+        Object value = props.get("aai.auth");
+        return value == null ? null : value.toString();
+    }
 
-       @Override
-       public String getKey() {
-               Object value = props.get("mso.msoKey");
-               return value == null ? null : value.toString();
-       }
+    @Override
+    public String getKey() {
+        Object value = props.get("mso.msoKey");
+        return value == null ? null : value.toString();
+    }
 }