Merge of new rebased code
[appc.git] / appc-dg / appc-dg-shared / appc-dg-dependency-model / src / main / java / org / openecomp / appc / dg / objects / Node.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.dg.objects;
23
24 import java.util.LinkedList;
25 import java.util.List;
26
27
28 public class Node<T> {
29     T child;
30     List<T> parents;
31
32     @Override
33     public int hashCode(){
34         return child.hashCode();
35     }
36
37     @Override
38     public boolean equals(Object object){
39         if(object == null){
40             return false;
41         }
42         if(!(object instanceof Node)){
43             return false;
44         }
45         Node node = (Node)object;
46         return this.child.equals(node.getChild());
47     }
48
49     public Node(T child){
50         this.child = child;
51         this.parents = new LinkedList<>();
52     }
53
54     public T getChild() {
55         return child;
56     }
57
58     public List<T> getParents() {
59         return parents;
60     }
61
62     public void addParent(T parent){
63         this.parents.add(parent);
64     }
65
66     @Override
67     public String toString() {
68         StringBuilder stringBuilder = new StringBuilder("Node : child = " + child + " , parents = ");
69         for(T parent:parents){
70             stringBuilder.append(parent).append(",");
71         }
72         return stringBuilder.toString();
73     }
74 }