Merge "Fix issue where null variable causes task to not" into dublin
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / beans / WorkflowActivitySpecSequenceId.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.db.catalog.beans;
22
23 import java.io.Serializable;
24 import org.apache.commons.lang3.builder.EqualsBuilder;
25 import org.apache.commons.lang3.builder.HashCodeBuilder;
26 import org.apache.commons.lang3.builder.ToStringBuilder;
27 import com.openpojo.business.annotation.BusinessKey;
28
29 public class WorkflowActivitySpecSequenceId implements Serializable {
30
31     private static final long serialVersionUID = -8987314754011453123L;
32
33     private Integer ID;
34
35     @BusinessKey
36     private Integer workflowId;
37     @BusinessKey
38     private Integer activitySpecId;
39
40     public Integer getID() {
41         return ID;
42     }
43
44     public void setID(Integer ID) {
45         this.ID = ID;
46     }
47
48     public Integer getWorkflowId() {
49         return workflowId;
50     }
51
52     public void setWorkflowId(Integer workflowId) {
53         this.workflowId = workflowId;
54     }
55
56     public Integer getActivitySpecId() {
57         return activitySpecId;
58     }
59
60     public void setActivitySpecId(Integer activitySpecId) {
61         this.activitySpecId = activitySpecId;
62     }
63
64     @Override
65     public String toString() {
66         return new ToStringBuilder(this).append("workflowId", workflowId).append("activitySpecId", activitySpecId)
67                 .toString();
68     }
69
70     @Override
71     public boolean equals(final Object other) {
72         if (!(other instanceof WorkflowActivitySpecSequenceId)) {
73             return false;
74         }
75         WorkflowActivitySpecSequenceId castOther = (WorkflowActivitySpecSequenceId) other;
76         return new EqualsBuilder().append(workflowId, castOther.workflowId)
77                 .append(activitySpecId, castOther.activitySpecId).isEquals();
78     }
79
80     @Override
81     public int hashCode() {
82         return new HashCodeBuilder().append(workflowId).append(activitySpecId).toHashCode();
83     }
84 }