b86f9fac03d3cc4b26ed4c99399a243b313d99a0
[aai/schema-service.git] / aai-schema-service / src / main / java / org / onap / aai / schemaservice / config / 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
21 package org.onap.aai.schemaservice.config;
22
23 import java.util.List;
24 import java.util.Map;
25
26 import org.onap.aai.schemaservice.nodeschema.SchemaVersion;
27 import org.onap.aai.schemaservice.nodeschema.SchemaVersions;
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     protected SchemaVersions schemaVersions;
39
40     @Autowired
41     public ConfigTranslator(SchemaLocationsBean schemaLocationbean, SchemaVersions schemaVersions) {
42         this.bean = schemaLocationbean;
43         this.schemaVersions = schemaVersions;
44     }
45
46     /**
47      * Translates the contents of the schema config file
48      * into the input for the NodeIngestor
49      *
50      * @return Map of Version to the list of (string) filenames to be
51      *         ingested for that version
52      */
53     public abstract Map<SchemaVersion, List<String>> getNodeFiles();
54
55     /**
56      * Translates the contents of the schema config file
57      * into the input for the EdgeIngestor
58      *
59      * @return Map of Version to the List of (String) filenames to be
60      *         ingested for that version
61      */
62     public abstract Map<SchemaVersion, List<String>> getEdgeFiles();
63
64     public SchemaVersions getSchemaVersions() {
65         return schemaVersions;
66     }
67 }