[AAI] Fix doc config files
[aai/aai-common.git] / aai-schema-abstraction / src / main / java / org / onap / aai / schemaif / definitions / VertexSchema.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 VertexSchema {
27     protected String name;
28     protected Map<String,PropertySchema> properties;
29     protected Map<String,String> annotations;
30
31     public String getName() {
32         return name;
33     }
34
35     public PropertySchema getPropertySchema(String propName) {
36         return properties.get(propName.toLowerCase());
37     }
38
39     public Map<String,PropertySchema> getPropertySchemaList() {
40         return properties;
41     }
42
43     public Map<String,String> getAnnotationSchemaList() {
44       return annotations;
45     }
46     
47     public String getAnnotationValue(String annotation) {
48         return annotations.get(annotation.toLowerCase());
49     }
50
51     public String toString() {
52         StringBuilder sb = new StringBuilder();
53         sb.append("vertex: " + getName() + "\n");
54         sb.append("  annotations: " + "\n");
55         for (String annotation : annotations.keySet()) {
56             sb.append("    " + annotation + ": " + annotations.get(annotation) + "\n");
57         }
58         sb.append("  properties: " + "\n");
59         for (PropertySchema attrSchema : getPropertySchemaList().values()) {
60             sb.append(attrSchema.toString());
61         }
62
63         return sb.toString();
64     }
65 }