6593c27ec5e26d05d411dfbaa34d0e19e331693d
[appc.git] / appc-common / src / main / java / org / onap / 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.onap.appc.metadata.objects;
26
27 /**
28  * Object of identifier for dependency model. Currently uses VNF type and catalog version
29  */
30 public class DependencyModelIdentifier {
31     static final String TO_STRING_FORMAT =
32             "DependencyModelIdentifier : vnfType = %s , catalogVersion = %s";
33     static final int prime = 31;
34
35     private String vnfType;
36     private String catalogVersion;
37
38     /**
39      * Constructor
40      * 
41      * @param vnfType String of the VNF type
42      * @param catalogVersion String of the catalog version
43      */
44     public DependencyModelIdentifier(String vnfType, String catalogVersion) {
45         this.vnfType = vnfType;
46         this.catalogVersion = catalogVersion;
47     }
48
49     @Override
50     public int hashCode() {
51         int result = 1;
52         result = result * prime + (this.vnfType == null ? 0 : this.vnfType.hashCode());
53         result = result * prime
54                 + (this.catalogVersion == null ? 0 : this.catalogVersion.hashCode());
55         return result;
56     }
57
58     @Override
59     public boolean equals(Object obj) {
60         if (obj == null) {
61             return false;
62         }
63         if (!(obj instanceof DependencyModelIdentifier)) {
64             return false;
65         }
66
67         DependencyModelIdentifier modelIdentifier = (DependencyModelIdentifier) obj;
68         if (this.vnfType == null) {
69             if (modelIdentifier.vnfType != null) {
70                 return false;
71             }
72         } else if (!this.vnfType.equals(modelIdentifier.vnfType)) {
73             return false;
74         }
75
76         if (this.catalogVersion == null) {
77             if (modelIdentifier.catalogVersion != null) {
78                 return false;
79             }
80         } else if (!this.catalogVersion.equals(modelIdentifier.catalogVersion)) {
81             return false;
82         }
83         return true;
84     }
85
86     @Override
87     public String toString() {
88         return String.format(TO_STRING_FORMAT, vnfType, catalogVersion);
89     }
90
91     public String getVnfType() {
92         return vnfType;
93     }
94
95     public String getCatalogVersion() {
96         return catalogVersion;
97     }
98
99 }