Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / bbobjects / ServiceProxy.java
index fa07677..6d6444f 100644 (file)
@@ -22,14 +22,11 @@ package org.onap.so.bpmn.servicedecomposition.bbobjects;
 
 import com.fasterxml.jackson.annotation.JsonProperty;
 import com.fasterxml.jackson.annotation.JsonRootName;
-
 import org.onap.so.bpmn.servicedecomposition.ShallowCopy;
 import org.onap.so.bpmn.servicedecomposition.homingobjects.SolutionCandidates;
 import org.onap.so.bpmn.servicedecomposition.modelinfo.ModelInfoServiceProxy;
-
 import java.io.Serializable;
 import javax.persistence.Id;
-
 import org.apache.commons.lang3.builder.EqualsBuilder;
 import org.apache.commons.lang3.builder.HashCodeBuilder;
 
@@ -51,58 +48,56 @@ public class ServiceProxy extends SolutionCandidates implements Serializable, Sh
     private ModelInfoServiceProxy modelInfoServiceProxy;
 
 
-       public String getId() {
-               return id;
-       }
-
-       public void setId(String id) {
-               this.id = id;
-       }
-
-       /**
-        * Way to identify the type of proxy
-        * i.e. "infrastructure", "transport", etc.
-        */
-       public String getType() {
-               return type;
-       }
-
-       /**
-        * Way to identify the type of proxy
-        * i.e. "infrastructure", "transport", etc.
-        */
-       public void setType(String type) {
-               this.type = type;
-       }
-
-       public ServiceInstance getServiceInstance() {
-               return serviceInstance;
-       }
-
-       public void setServiceInstance(ServiceInstance serviceInstance) {
-               this.serviceInstance = serviceInstance;
-       }
-
-       public ModelInfoServiceProxy getModelInfoServiceProxy() {
-               return modelInfoServiceProxy;
-       }
-
-       public void setModelInfoServiceProxy(ModelInfoServiceProxy modelInfoServiceProxy) {
-               this.modelInfoServiceProxy = modelInfoServiceProxy;
-       }
-
-       @Override
-       public boolean equals(final Object other){
-               if(!(other instanceof ServiceProxy)){
-                       return false;
-               }
-               ServiceProxy castOther = (ServiceProxy) other;
-               return new EqualsBuilder().append(id, castOther.id).isEquals();
-       }
-
-       @Override
-       public int hashCode(){
-               return new HashCodeBuilder().append(id).toHashCode();
-       }
+    public String getId() {
+        return id;
+    }
+
+    public void setId(String id) {
+        this.id = id;
+    }
+
+    /**
+     * Way to identify the type of proxy i.e. "infrastructure", "transport", etc.
+     */
+    public String getType() {
+        return type;
+    }
+
+    /**
+     * Way to identify the type of proxy i.e. "infrastructure", "transport", etc.
+     */
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public ServiceInstance getServiceInstance() {
+        return serviceInstance;
+    }
+
+    public void setServiceInstance(ServiceInstance serviceInstance) {
+        this.serviceInstance = serviceInstance;
+    }
+
+    public ModelInfoServiceProxy getModelInfoServiceProxy() {
+        return modelInfoServiceProxy;
+    }
+
+    public void setModelInfoServiceProxy(ModelInfoServiceProxy modelInfoServiceProxy) {
+        this.modelInfoServiceProxy = modelInfoServiceProxy;
+    }
+
+    @Override
+    public boolean equals(final Object other) {
+        if (!(other instanceof ServiceProxy)) {
+            return false;
+        }
+        ServiceProxy castOther = (ServiceProxy) other;
+        return new EqualsBuilder().append(id, castOther.id).isEquals();
+    }
+
+    @Override
+    public int hashCode() {
+        return new HashCodeBuilder().append(id).toHashCode();
+    }
 
 }