Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / setup / ConfigTranslator.java
1 /** 
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-18 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
21 package org.onap.aai.setup;
22
23 import java.util.List;
24 import java.util.Map;
25
26 import org.springframework.beans.factory.annotation.Autowired;
27
28 /**
29  * Converts the contents of the schema config file
30  * (which lists which schema files to be loaded) to
31  * the format the Ingestors can work with.
32  * 
33  */
34 public abstract class ConfigTranslator {
35         protected SchemaLocationsBean bean;
36         protected SchemaVersions schemaVersions;
37         
38         @Autowired
39         public ConfigTranslator(SchemaLocationsBean schemaLocationbean, SchemaVersions schemaVersions) {
40                 this.bean = schemaLocationbean;
41                 this.schemaVersions = schemaVersions;
42         }
43         
44         /**
45          * Translates the contents of the schema config file
46          * into the input for the NodeIngestor
47          * 
48          * @return Map of Version to the list of (string) filenames to be 
49          * ingested for that version
50          */
51         public abstract Map<SchemaVersion, List<String>> getNodeFiles();
52         
53         /**
54          * Translates the contents of the schema config file
55          * into the input for the EdgeIngestor
56          * 
57          * @return Map of Version to the List of (String) filenames to be 
58          * ingested for that version
59          */
60         public abstract Map<SchemaVersion, List<String>> getEdgeFiles();
61
62         public SchemaVersions getSchemaVersions(){
63                 return schemaVersions;
64         }
65 }