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