Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / beans / VnfResourceWorkflowId.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 VnfResourceWorkflowId implements Serializable {
30
31     private static final long serialVersionUID = -594459957997483601L;
32
33     private Integer ID;
34
35     @BusinessKey
36     private String vnfResourceModelUUID;
37     @BusinessKey
38     private Integer workflowId;
39
40     public String getVnfResourceModelUUID() {
41         return vnfResourceModelUUID;
42     }
43
44     public void setVnfResourceModelUUID(String vnfResourceModelUUID) {
45         this.vnfResourceModelUUID = vnfResourceModelUUID;
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 getID() {
57         return ID;
58     }
59
60     public void setID(Integer ID) {
61         this.ID = ID;
62     }
63
64     @Override
65     public String toString() {
66         return new ToStringBuilder(this).append("vnfResourceModelUUID", vnfResourceModelUUID)
67                 .append("workflowId", workflowId).toString();
68     }
69
70     @Override
71     public boolean equals(final Object other) {
72         if (!(other instanceof VnfResourceWorkflowId)) {
73             return false;
74         }
75         VnfResourceWorkflowId castOther = (VnfResourceWorkflowId) other;
76         return new EqualsBuilder().append(vnfResourceModelUUID, castOther.vnfResourceModelUUID)
77                 .append(workflowId, castOther.workflowId).isEquals();
78     }
79
80     @Override
81     public int hashCode() {
82         return new HashCodeBuilder().append(vnfResourceModelUUID).append(workflowId).toHashCode();
83     }
84 }