Replaced all tabs with spaces in java and pom.xml
[so.git] / common / src / main / java / org / onap / so / client / grm / beans / ServiceEndPointLookupRequest.java
index 5e88630..be537e4 100644 (file)
@@ -27,32 +27,32 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
 @JsonInclude(JsonInclude.Include.NON_NULL)
 @JsonIgnoreProperties(ignoreUnknown = true)
-@JsonPropertyOrder({ "serviceEndPoint", "env" })
+@JsonPropertyOrder({"serviceEndPoint", "env"})
 public class ServiceEndPointLookupRequest {
 
-       @JsonProperty("serviceEndPoint")
-       private ServiceEndPointLookup serviceEndPoint;
-       @JsonProperty("env")
-       private String env;
-
-       @JsonProperty("serviceEndPoint")
-       public ServiceEndPointLookup getServiceEndPoint() {
-               return serviceEndPoint;
-       }
-
-       @JsonProperty("serviceEndPoint")
-       public void setServiceEndPoint(ServiceEndPointLookup serviceEndPoint) {
-               this.serviceEndPoint = serviceEndPoint;
-       }
-
-       @JsonProperty("env")
-       public String getEnv() {
-               return env;
-       }
-
-       @JsonProperty("env")
-       public void setEnv(String env) {
-               this.env = env;
-       }
+    @JsonProperty("serviceEndPoint")
+    private ServiceEndPointLookup serviceEndPoint;
+    @JsonProperty("env")
+    private String env;
+
+    @JsonProperty("serviceEndPoint")
+    public ServiceEndPointLookup getServiceEndPoint() {
+        return serviceEndPoint;
+    }
+
+    @JsonProperty("serviceEndPoint")
+    public void setServiceEndPoint(ServiceEndPointLookup serviceEndPoint) {
+        this.serviceEndPoint = serviceEndPoint;
+    }
+
+    @JsonProperty("env")
+    public String getEnv() {
+        return env;
+    }
+
+    @JsonProperty("env")
+    public void setEnv(String env) {
+        this.env = env;
+    }
 
 }