Applying license changes to all files
[appc.git] / appc-common / src / main / java / org / openecomp / appc / metadata / objects / DependencyModelIdentifier.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.metadata.objects;
26
27
28 public class DependencyModelIdentifier {
29     private String vnfType;
30     private String catalogVersion;
31
32     public DependencyModelIdentifier(String vnfType, String catalogVersion){
33         this.vnfType = vnfType;
34         this.catalogVersion = catalogVersion;
35     }
36
37     public int hashCode(){
38         final int prime = 31;
39         int result = 1;
40         result = result * prime + (this.vnfType == null ? 0 :this.vnfType.hashCode());
41         result = result * prime + (this.catalogVersion == null ? 0 :this.catalogVersion.hashCode());
42         return result;
43     }
44
45     public boolean equals(Object obj){
46         if(obj ==null)
47             return false;
48         if(!(obj instanceof DependencyModelIdentifier))
49             return false;
50
51         DependencyModelIdentifier modelIdentifier = (DependencyModelIdentifier)obj;
52         if(this.vnfType == null){
53             if(modelIdentifier.vnfType !=null)
54                 return false;
55         }
56         else if(!this.vnfType.equals(modelIdentifier.vnfType))
57             return false;
58
59         if(this.catalogVersion == null){
60             if(modelIdentifier.catalogVersion !=null)
61                 return false;
62         }
63         else if(!this.catalogVersion.equals(modelIdentifier.catalogVersion))
64             return false;
65
66         return true;
67     }
68
69     @Override
70     public String toString() {
71         return "DependencyModelIdentifier : vnfType = "+vnfType + " , catalogVersion = " +catalogVersion;
72     }
73
74     public String getVnfType() {
75         return vnfType;
76     }
77
78     public String getCatalogVersion() {
79         return catalogVersion;
80     }
81
82 }