[SDC-31] add mising script got Comformance fix
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / AttributeDefinition.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.openecomp.sdc.be.model;
22
23 import java.io.Serializable;
24
25 import org.openecomp.sdc.be.datatypes.elements.AttributeDataDefinition;
26
27 public class AttributeDefinition extends AttributeDataDefinition implements IComplexDefaultValue, Serializable {
28
29         /**
30          * 
31          */
32         private static final long serialVersionUID = -6306111879714097811L;
33
34         @Override
35         public int hashCode() {
36                 final int prime = 31;
37                 int result = super.hashCode();
38                 result = prime * result + ((parentUniqueId == null) ? 0 : parentUniqueId.hashCode());
39                 return result;
40         }
41
42         /**
43          * The resource id which this property belongs to
44          */
45         private String parentUniqueId;
46
47         public AttributeDefinition(AttributeDefinition hpdd) {
48                 super(hpdd);
49         }
50
51         public AttributeDefinition() {
52                 super();
53         }
54
55         public AttributeDefinition(AttributeDataDefinition p) {
56                 super(p);
57         }
58
59         public String getParentUniqueId() {
60                 return parentUniqueId;
61         }
62
63         public void setParentUniqueId(String parentUniqueId) {
64                 this.parentUniqueId = parentUniqueId;
65         }
66
67         @Override
68         public String toString() {
69                 return super.toString() + " [ parentUniqueId=" + parentUniqueId + "]";
70         }
71 }