Update the license for 2017-2018 license
[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-2018 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 package org.onap.aai.setup;
21
22 import java.util.List;
23 import java.util.Map;
24
25 import org.springframework.beans.factory.annotation.Autowired;
26
27 /**
28  * Converts the contents of the schema config file
29  * (which lists which schema files to be loaded) to
30  * the format the Ingestors can work with.
31  * 
32  */
33 public abstract class ConfigTranslator {
34         protected SchemaLocationsBean bean;
35         
36         @Autowired
37         public ConfigTranslator(SchemaLocationsBean bean) {
38                 this.bean = bean;
39         }
40         
41         /**
42          * Translates the contents of the schema config file
43          * into the input for the NodeIngestor
44          * 
45          * @return Map of Version to the list of (string) filenames to be 
46          * ingested for that version
47          */
48         public abstract Map<Version, List<String>> getNodeFiles();
49         
50         /**
51          * Translates the contents of the schema config file
52          * into the input for the EdgeIngestor
53          * 
54          * @return Map of Version to the List of (String) filenames to be 
55          * ingested for that version
56          */
57         public abstract Map<Version, List<String>> getEdgeFiles();
58 }