Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / aai / AAIDSLQueryClient.java
index 5f2c623..1747d97 100644 (file)
@@ -26,30 +26,31 @@ import org.onap.so.client.graphinventory.GraphInventoryQueryClient;
 import org.onap.so.client.graphinventory.entities.DSLQuery;
 import org.onap.so.client.graphinventory.entities.uri.GraphInventoryUri;
 
-public class AAIDSLQueryClient extends GraphInventoryQueryClient<AAIDSLQueryClient, DSLQuery, AAIResultWrapper, AAIObjectType> {
-
-       public AAIDSLQueryClient() {
-               super(new AAIClient());
-       }
-       
-       public AAIDSLQueryClient(AAIVersion version) {
-               super(new AAIClient(version));
-       }
-
-       @Override
-       protected GraphInventoryUri getQueryUri() {
-               return AAIUriFactory.createResourceUri(AAIObjectType.DSL);
-       }
-       
-
-       @Override
-       public AAIResultWrapper createWrapper(String json) {
-               return new AAIResultWrapper(json);
-       }
-
-       @Override
-       public AAIObjectType createType(String name) {
-               return AAIObjectType.fromTypeName(name);
-       }
-       
+public class AAIDSLQueryClient
+        extends GraphInventoryQueryClient<AAIDSLQueryClient, DSLQuery, AAIResultWrapper, AAIObjectType> {
+
+    public AAIDSLQueryClient() {
+        super(new AAIClient());
+    }
+
+    public AAIDSLQueryClient(AAIVersion version) {
+        super(new AAIClient(version));
+    }
+
+    @Override
+    protected GraphInventoryUri getQueryUri() {
+        return AAIUriFactory.createResourceUri(AAIObjectType.DSL);
+    }
+
+
+    @Override
+    public AAIResultWrapper createWrapper(String json) {
+        return new AAIResultWrapper(json);
+    }
+
+    @Override
+    public AAIObjectType createType(String name) {
+        return AAIObjectType.fromTypeName(name);
+    }
+
 }