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