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