07dd65d1c24ea1f9a1f31d7c9d75f9e7b2658254
[aai/aai-common.git] / aai-schema-abstraction / src / main / java / org / onap / aai / schemaif / definitions / EdgeSchema.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2019 Amdocs
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 package org.onap.aai.schemaif.definitions;
22
23 import java.util.Map;
24
25
26 public class EdgeSchema {
27     protected String name;
28     protected String source;
29     protected String target;
30     protected Multiplicity multiplicity; 
31     protected Map<String,String> annotations;
32     protected Map<String,PropertySchema> properties;
33     
34     public enum Multiplicity {
35         MANY_2_MANY, 
36         MANY_2_ONE,
37         ONE_2_MANY,
38         ONE_2_ONE
39     }
40     
41     public String getName() {
42         return name;
43     }
44     
45     public String getSource() {
46         return source;
47     }
48     
49     public String getTarget() {
50         return target;
51     }
52
53     public Multiplicity getMultiplicity() {
54         return multiplicity;
55     }
56
57     public PropertySchema getPropertySchema(String propName) {
58         return properties.get(propName.toLowerCase());
59     }
60
61     public Map<String,PropertySchema> getPropertySchemaList() {
62         return properties;
63     }
64     
65     public String getAnnotationValue(String annotation) {
66         return annotations.get(annotation.toLowerCase());
67     }
68     
69     public Map<String,String> getAnnotations() {
70         return annotations;
71     }
72     
73     @Override
74     public int hashCode() {
75         String key = source + target + name;
76         return key.hashCode();
77     }
78     
79     @Override
80     public boolean equals(Object obj) {
81         if (this == obj) {
82             return true;
83         }
84         
85         if (getClass() != obj.getClass()) {
86             return false;
87         }
88         
89         EdgeSchema other = (EdgeSchema) obj;
90         
91         if ( (!source.equals(other.getSource())) || (!target.equals(other.getTarget())) || (!name.equals(other.getName())) ) {
92             return false;
93         }
94         
95         return true;
96     }
97     
98     public String toString() {
99         StringBuilder sb = new StringBuilder();
100         sb.append("edge: " + getSource() + " -> " + getTarget() + "\n");
101         sb.append("  type: " + getName() + "\n");
102         sb.append("  multiplicity: " + getMultiplicity() + "\n");
103         
104         sb.append("  annotations: " + "\n");
105         for (String annotation : annotations.keySet()) {
106             sb.append("    " + annotation + ": " + annotations.get(annotation) + "\n");
107         }
108         sb.append("  properties: " + "\n");
109         for (PropertySchema attrSchema : getPropertySchemaList().values()) {
110             sb.append(attrSchema.toString());
111         }
112         
113         return sb.toString();
114     }
115
116 }