Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / beans / WorkflowActivitySpecSequenceId.java
index f0a5759..41af2ed 100644 (file)
 package org.onap.so.db.catalog.beans;
 
 import java.io.Serializable;
-
 import org.apache.commons.lang3.builder.EqualsBuilder;
 import org.apache.commons.lang3.builder.HashCodeBuilder;
 import org.apache.commons.lang3.builder.ToStringBuilder;
-
 import com.openpojo.business.annotation.BusinessKey;
 
 public class WorkflowActivitySpecSequenceId implements Serializable {
-       
-       private static final long serialVersionUID = -8987314754011453123L;
-       
-       private Integer ID;
 
-       @BusinessKey
-       private Integer workflowId;
-       @BusinessKey
-       private Integer activitySpecId;
-       
-       public Integer getID() {
-               return ID;
-       }
-       public void setID(Integer ID) {
-               this.ID = ID;
-       }
-       
-       public Integer getWorkflowId() {
-               return workflowId;
-       }
-       public void setWorkflowId(Integer workflowId) {
-               this.workflowId = workflowId;
-       }
-       public Integer getActivitySpecId() {
-               return activitySpecId;
-       }
-       public void setActivitySpecId(Integer activitySpecId) {
-               this.activitySpecId = activitySpecId;
-       }
+    private static final long serialVersionUID = -8987314754011453123L;
+
+    private Integer ID;
+
+    @BusinessKey
+    private Integer workflowId;
+    @BusinessKey
+    private Integer activitySpecId;
+
+    public Integer getID() {
+        return ID;
+    }
+
+    public void setID(Integer ID) {
+        this.ID = ID;
+    }
+
+    public Integer getWorkflowId() {
+        return workflowId;
+    }
+
+    public void setWorkflowId(Integer workflowId) {
+        this.workflowId = workflowId;
+    }
+
+    public Integer getActivitySpecId() {
+        return activitySpecId;
+    }
+
+    public void setActivitySpecId(Integer activitySpecId) {
+        this.activitySpecId = activitySpecId;
+    }
 
-       @Override
-       public String toString() {
-               return new ToStringBuilder(this).append("workflowId", workflowId)
-                               .append("activitySpecId", activitySpecId).toString();
-       }
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this).append("workflowId", workflowId).append("activitySpecId", activitySpecId)
+                .toString();
+    }
 
-       @Override
-       public boolean equals(final Object other) {
-               if (!(other instanceof WorkflowActivitySpecSequenceId)) {
-                       return false;
-               }
-               WorkflowActivitySpecSequenceId castOther = (WorkflowActivitySpecSequenceId) other;
-               return new EqualsBuilder().append(workflowId, castOther.workflowId)
-                               .append(activitySpecId, castOther.activitySpecId).isEquals();
-       }
+    @Override
+    public boolean equals(final Object other) {
+        if (!(other instanceof WorkflowActivitySpecSequenceId)) {
+            return false;
+        }
+        WorkflowActivitySpecSequenceId castOther = (WorkflowActivitySpecSequenceId) other;
+        return new EqualsBuilder().append(workflowId, castOther.workflowId)
+                .append(activitySpecId, castOther.activitySpecId).isEquals();
+    }
 
-       @Override
-       public int hashCode() {
-               return new HashCodeBuilder().append(workflowId).append(activitySpecId).toHashCode();
-       }
+    @Override
+    public int hashCode() {
+        return new HashCodeBuilder().append(workflowId).append(activitySpecId).toHashCode();
+    }
 }