[SO] Release so 1.13.0 image
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / beans / TempNetworkHeatTemplateLookupId.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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 TempNetworkHeatTemplateLookupId implements Serializable {
30
31     /**
32      * 
33      */
34     private static final long serialVersionUID = -3660507980620002091L;
35     @BusinessKey
36     private String networkResourceModelName;
37     @BusinessKey
38     private String heatTemplateArtifactUuid;
39
40     @Override
41     public String toString() {
42         return new ToStringBuilder(this).append("networkResourceModelName", networkResourceModelName)
43                 .append("heatTemplateArtifactUuid", heatTemplateArtifactUuid).toString();
44     }
45
46     public String getNetworkResourceModelName() {
47         return networkResourceModelName;
48     }
49
50     public void setNetworkResourceModelName(String networkResourceModelName) {
51         this.networkResourceModelName = networkResourceModelName;
52     }
53
54     public String getHeatTemplateArtifactUuid() {
55         return heatTemplateArtifactUuid;
56     }
57
58     public void setHeatTemplateArtifactUuid(String heatTemplateArtifactUuid) {
59         this.heatTemplateArtifactUuid = heatTemplateArtifactUuid;
60     }
61
62     @Override
63     public boolean equals(final Object other) {
64         if (!(other instanceof TempNetworkHeatTemplateLookupId)) {
65             return false;
66         }
67         TempNetworkHeatTemplateLookupId castOther = (TempNetworkHeatTemplateLookupId) other;
68         return new EqualsBuilder().append(networkResourceModelName, castOther.networkResourceModelName)
69                 .append(heatTemplateArtifactUuid, castOther.heatTemplateArtifactUuid).isEquals();
70     }
71
72     @Override
73     public int hashCode() {
74         return new HashCodeBuilder().append(networkResourceModelName).append(heatTemplateArtifactUuid).toHashCode();
75     }
76 }