b34622de0e9b1e73178fa67f7280c6f312722447
[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 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
23 package org.onap.aai.setup;
24
25 import java.util.List;
26 import java.util.Map;
27
28 import org.springframework.beans.factory.annotation.Autowired;
29
30 /**
31  * Converts the contents of the schema config file
32  * (which lists which schema files to be loaded) to
33  * the format the Ingestors can work with.
34  * 
35  */
36 public abstract class ConfigTranslator {
37         protected SchemaLocationsBean bean;
38         
39         @Autowired
40         public ConfigTranslator(SchemaLocationsBean bean) {
41                 this.bean = bean;
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<Version, 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<Version, List<String>> getEdgeFiles();
61 }