2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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 * Modifications copyright (c) 2019 Nokia
20 * ================================================================================
23 package org.openecomp.sdc.vendorsoftwareproduct.types.composition;
25 import com.google.common.annotations.VisibleForTesting;
27 public class CompositionEntityId {
29 private CompositionEntityId parentId;
32 CompositionEntityId() {}
34 public CompositionEntityId(String id, CompositionEntityId parentId) {
36 this.parentId = parentId;
39 public String getId() {
43 public CompositionEntityId getParentId() {
48 public int hashCode() {
49 int result = id != null ? id.hashCode() : 0;
50 result = 31 * result + (parentId != null ? parentId.hashCode() : 0);
55 public boolean equals(Object object) {
59 if (object == null || getClass() != object.getClass()) {
63 CompositionEntityId that = (CompositionEntityId) object;
65 if (id != null ? !id.equals(that.id) : that.id != null) {
68 return parentId != null ? parentId.equals(that.parentId) : that.parentId == null;
73 public String toString() {
74 return parentId == null
76 : parentId.toString() + "/" + id;