Reformat catalog-model
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / ComponentMetadataDefinition.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 package org.openecomp.sdc.be.model;
21
22 import org.openecomp.sdc.be.datatypes.components.ComponentMetadataDataDefinition;
23
24 public class ComponentMetadataDefinition {
25
26     protected ComponentMetadataDataDefinition componentMetadataDataDefinition;
27
28     public ComponentMetadataDefinition() {
29     }
30
31     public ComponentMetadataDefinition(ComponentMetadataDataDefinition component) {
32         this.componentMetadataDataDefinition = component;
33     }
34
35     public ComponentMetadataDataDefinition getMetadataDataDefinition() {
36         return this.componentMetadataDataDefinition;
37     }
38
39     @Override
40     public int hashCode() {
41         final int prime = 31;
42         int result = 1;
43         result = prime * result + ((componentMetadataDataDefinition == null) ? 0 : componentMetadataDataDefinition.hashCode());
44         return result;
45     }
46
47     @Override
48     public boolean equals(Object obj) {
49         if (this == obj) {
50             return true;
51         }
52         if (obj == null) {
53             return false;
54         }
55         if (getClass() != obj.getClass()) {
56             return false;
57         }
58         ComponentMetadataDefinition other = (ComponentMetadataDefinition) obj;
59         if (componentMetadataDataDefinition == null) {
60             if (other.componentMetadataDataDefinition != null) {
61                 return false;
62             }
63         } else if (!componentMetadataDataDefinition.equals(other.componentMetadataDataDefinition)) {
64             return false;
65         }
66         return true;
67     }
68 }