Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / GraphInventoryClient.java
index 30e91dc..98d48ec 100644 (file)
@@ -21,7 +21,6 @@
 package org.onap.so.client.graphinventory;
 
 import java.net.URI;
-
 import org.onap.so.client.RestClient;
 import org.onap.so.client.RestProperties;
 import org.onap.so.client.RestPropertiesLoader;
@@ -29,24 +28,26 @@ import org.onap.so.client.graphinventory.entities.uri.GraphInventoryUri;
 
 public abstract class GraphInventoryClient {
 
-       private RestProperties props;
-       protected GraphInventoryClient(Class<? extends RestProperties> propertiesClass) {
-                               
-               RestProperties props = RestPropertiesLoader.getInstance().getNewImpl(propertiesClass);
-               this.props = props;
-       }
-       protected abstract URI constructPath(GraphInventoryUri uri);
-       
-       public abstract RestClient createClient(GraphInventoryUri uri);
-
-       public <T extends RestProperties> T getRestProperties() {
-               if (props == null) {
-                       throw new IllegalStateException("No RestProperty implementation found on classpath");
-               }
-               return (T)props;
-       }
-       
-       public abstract GraphInventoryVersion getVersion();
-       
-       public abstract String getGraphDBName();
+    private RestProperties props;
+
+    protected GraphInventoryClient(Class<? extends RestProperties> propertiesClass) {
+
+        RestProperties props = RestPropertiesLoader.getInstance().getNewImpl(propertiesClass);
+        this.props = props;
+    }
+
+    protected abstract URI constructPath(GraphInventoryUri uri);
+
+    public abstract RestClient createClient(GraphInventoryUri uri);
+
+    public <T extends RestProperties> T getRestProperties() {
+        if (props == null) {
+            throw new IllegalStateException("No RestProperty implementation found on classpath");
+        }
+        return (T) props;
+    }
+
+    public abstract GraphInventoryVersion getVersion();
+
+    public abstract String getGraphDBName();
 }