Containerization feature of SO
[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
25 import org.apache.commons.lang3.builder.EqualsBuilder;
26 import org.apache.commons.lang3.builder.HashCodeBuilder;
27 import org.apache.commons.lang3.builder.ToStringBuilder;
28
29 import com.openpojo.business.annotation.BusinessKey;
30
31 public class TempNetworkHeatTemplateLookupId implements Serializable {
32
33         /**
34          * 
35          */
36         private static final long serialVersionUID = -3660507980620002091L;
37         @BusinessKey
38         private String networkResourceModelName;
39         @BusinessKey
40         private String heatTemplateArtifactUuid;
41
42         @Override
43         public String toString() {
44                 return new ToStringBuilder(this).append("networkResourceModelName", networkResourceModelName)
45                                 .append("heatTemplateArtifactUuid", heatTemplateArtifactUuid).toString();
46         }
47
48         public String getNetworkResourceModelName() {
49                 return networkResourceModelName;
50         }
51
52         public void setNetworkResourceModelName(String networkResourceModelName) {
53                 this.networkResourceModelName = networkResourceModelName;
54         }
55
56         public String getHeatTemplateArtifactUuid() {
57                 return heatTemplateArtifactUuid;
58         }
59
60         public void setHeatTemplateArtifactUuid(String heatTemplateArtifactUuid) {
61                 this.heatTemplateArtifactUuid = heatTemplateArtifactUuid;
62         }
63
64         @Override
65         public boolean equals(final Object other) {
66                 if (!(other instanceof TempNetworkHeatTemplateLookupId)) {
67                         return false;
68                 }
69                 TempNetworkHeatTemplateLookupId castOther = (TempNetworkHeatTemplateLookupId) other;
70                 return new EqualsBuilder().append(networkResourceModelName, castOther.networkResourceModelName)
71                                 .append(heatTemplateArtifactUuid, castOther.heatTemplateArtifactUuid).isEquals();
72         }
73
74         @Override
75         public int hashCode() {
76                 return new HashCodeBuilder().append(networkResourceModelName).append(heatTemplateArtifactUuid).toHashCode();
77         }
78 }