Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / Resource.java
index 8d49fb5..1e7169d 100644 (file)
@@ -25,36 +25,33 @@ import com.fasterxml.jackson.annotation.JsonProperty;
 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
 @JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-       "resource-type",
-       "resource-link"
-})
+@JsonPropertyOrder({"resource-type", "resource-link"})
 public class Resource {
 
-       @JsonProperty("resource-type")
-       private String resourceType;
-       @JsonProperty("resource-link")
-       private String resourceLink;
-
-       @JsonProperty("resource-type")
-       public String getResourceType() {
-               return resourceType;
-       }
-
-       @JsonProperty("resource-type")
-       public void setResourceType(String resourceType) {
-               this.resourceType = resourceType;
-       }
-
-       @JsonProperty("resource-link")
-       public String getResourceLink() {
-               return resourceLink;
-       }
-
-       @JsonProperty("resource-link")
-       public void setResourceLink(String resourceLink) {
-               this.resourceLink = resourceLink;
-       }
+    @JsonProperty("resource-type")
+    private String resourceType;
+    @JsonProperty("resource-link")
+    private String resourceLink;
+
+    @JsonProperty("resource-type")
+    public String getResourceType() {
+        return resourceType;
+    }
+
+    @JsonProperty("resource-type")
+    public void setResourceType(String resourceType) {
+        this.resourceType = resourceType;
+    }
+
+    @JsonProperty("resource-link")
+    public String getResourceLink() {
+        return resourceLink;
+    }
+
+    @JsonProperty("resource-link")
+    public void setResourceLink(String resourceLink) {
+        this.resourceLink = resourceLink;
+    }
 
 }