61c199c43fc902d36507dece3999b6da393a7148
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / beans / HeatTemplateParamId.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 HeatTemplateParamId implements Serializable {
32         @BusinessKey
33         private String heatTemplateArtifactUuid;
34         @BusinessKey
35         private String paramName;
36
37         public static final long serialVersionUID = -1322322139926390329L;
38
39         @Override
40         public boolean equals(final Object other) {
41                 if (!(other instanceof HeatTemplateParamId)) {
42                         return false;
43                 }
44                 HeatTemplateParamId castOther = (HeatTemplateParamId) other;
45                 return new EqualsBuilder().append(heatTemplateArtifactUuid, castOther.heatTemplateArtifactUuid)
46                                 .append(paramName, castOther.paramName).isEquals();
47         }
48
49         @Override
50         public int hashCode() {
51                 return new HashCodeBuilder().append(heatTemplateArtifactUuid).append(paramName).toHashCode();
52         }
53
54         public String getHeatTemplateArtifactUuid() {
55                 return this.heatTemplateArtifactUuid;
56         }
57
58         public void setHeatTemplateArtifactUuid(String heatTemplateArtifactUuid) {
59                 this.heatTemplateArtifactUuid = heatTemplateArtifactUuid;
60         }
61
62         public String getParamName() {
63                 return this.paramName;
64         }
65
66         public void setParamName(String paramName) {
67                 this.paramName = paramName;
68         }
69
70         @Override
71         public String toString() {
72                 return new ToStringBuilder(this).append("heatTemplateArtifactUuid", heatTemplateArtifactUuid)
73                                 .append("paramName", paramName).toString();
74         }
75 }