Second part of onap rename
[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.
29  * Currently uses VNF type and catalog version
30  */
31 public class DependencyModelIdentifier {
32     static final String TO_STRING_FORMAT = "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      * @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 + (this.catalogVersion == null ? 0 :this.catalogVersion.hashCode());
53         return result;
54     }
55
56     @Override
57     public boolean equals(Object obj) {
58         if (obj ==null) {
59             return false;
60         }
61         if (!(obj instanceof DependencyModelIdentifier)) {
62             return false;
63         }
64
65         DependencyModelIdentifier modelIdentifier = (DependencyModelIdentifier)obj;
66         if (this.vnfType == null) {
67             if (modelIdentifier.vnfType !=null) {
68                 return false;
69             }
70         } else if (!this.vnfType.equals(modelIdentifier.vnfType)) {
71             return false;
72         }
73
74         if (this.catalogVersion == null) {
75             if (modelIdentifier.catalogVersion !=null) {
76                 return false;
77             }
78         } else if (!this.catalogVersion.equals(modelIdentifier.catalogVersion)) {
79             return false;
80         }
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 }