3e7a595a170c8e838e6679120c92fa0ae0d515b9
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / db / schema / Auditor.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
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  *
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.db.schema;
23
24 import java.util.*;
25
26 public abstract class Auditor {
27
28         protected Map<String, DBProperty> properties = new HashMap<>();
29         protected Map<String, DBIndex> indexes = new HashMap<>();
30         protected Map<String, EdgeProperty> edgeLabels = new HashMap<>();
31         
32         /**
33          * Gets the audit doc.
34          *
35          * @return the audit doc
36          */
37         public AuditDoc getAuditDoc() {
38                 AuditDoc doc = new AuditDoc();
39                 List<DBProperty> propertyList = new ArrayList<>();
40                 List<DBIndex> indexList = new ArrayList<>();
41                 List<EdgeProperty> edgeLabelList = new ArrayList<>();
42                 propertyList.addAll(this.properties.values());
43                 indexList.addAll(this.indexes.values());
44                 edgeLabelList.addAll(this.edgeLabels.values());
45                 Collections.sort(propertyList, new CompareByName());
46                 Collections.sort(indexList, new CompareByName());
47                 Collections.sort(edgeLabelList, new CompareByName());
48                 
49                 doc.setProperties(propertyList);
50                 doc.setIndexes(indexList);
51                 doc.setEdgeLabels(edgeLabelList);
52                 
53                 return doc;
54         }
55 }