Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / ResourceAndUrl.java
index 6e7312c..326bd06 100644 (file)
@@ -24,33 +24,38 @@ import org.onap.so.client.graphinventory.GraphInventoryObjectType;
 
 public class ResourceAndUrl<Wrapper extends GraphInventoryResultWrapper> {
 
-       private String url;
-       private GraphInventoryObjectType type;
-       private Wrapper wrapper;
-       
-       public ResourceAndUrl(String url, GraphInventoryObjectType type, Wrapper wrapper) {
-               this.url = url;
-               this.type = type;
-               this.wrapper = wrapper;
-       }
-       public String getUrl() {
-               return url;
-       }
-       public void setUrl(String url) {
-               this.url = url;
-       }
-       public Wrapper getWrapper() {
-               return wrapper;
-       }
-       public void setWrapper(Wrapper wrapper) {
-               this.wrapper = wrapper;
-       }
-       public GraphInventoryObjectType getType() {
-               return type;
-       }
-       
-       public void setType(GraphInventoryObjectType type) {
-               this.type = type;
-       }
-       
+    private String url;
+    private GraphInventoryObjectType type;
+    private Wrapper wrapper;
+
+    public ResourceAndUrl(String url, GraphInventoryObjectType type, Wrapper wrapper) {
+        this.url = url;
+        this.type = type;
+        this.wrapper = wrapper;
+    }
+
+    public String getUrl() {
+        return url;
+    }
+
+    public void setUrl(String url) {
+        this.url = url;
+    }
+
+    public Wrapper getWrapper() {
+        return wrapper;
+    }
+
+    public void setWrapper(Wrapper wrapper) {
+        this.wrapper = wrapper;
+    }
+
+    public GraphInventoryObjectType getType() {
+        return type;
+    }
+
+    public void setType(GraphInventoryObjectType type) {
+        this.type = type;
+    }
+
 }