09062e1c22802aa8ac4a76f3491050154aedd9f0
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / setup / Translator.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 org.springframework.beans.factory.annotation.Autowired;
24
25 import java.io.*;
26 import java.util.List;
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 Translator {
34
35         protected SchemaVersions schemaVersions;
36
37         public Translator(SchemaVersions schemaVersions) {
38                 this.schemaVersions = schemaVersions;
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
49
50     public abstract List<InputStream> getVersionNodeStream(SchemaVersion version) throws IOException;
51
52     public abstract List<String>
53     getJsonPayload(SchemaVersion version) throws IOException;
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
63
64         public SchemaVersions getSchemaVersions(){
65         return this.schemaVersions;
66         }
67 }