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