e492d2138fce17dfe10a519b7c7683e97aaa94aa
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / config / EdgesConfiguration.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright © 2018 IBM.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *    http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22 package org.onap.aai.config;
23
24 import org.onap.aai.edges.EdgeIngestor;
25 import org.onap.aai.setup.SchemaVersions;
26 import org.onap.aai.setup.Translator;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.beans.factory.annotation.Value;
29 import org.springframework.context.annotation.Bean;
30 import org.springframework.context.annotation.Configuration;
31 import org.springframework.context.annotation.Import;
32 import org.springframework.context.annotation.PropertySource;
33
34 import java.util.Arrays;
35 import java.util.HashSet;
36 import java.util.List;
37 import java.util.Set;
38
39 @Import({SchemaServiceConfiguration.class, ConfigConfiguration.class, TranslatorConfiguration.class})
40 @PropertySource(value = "classpath:schema-ingest.properties", ignoreResourceNotFound = true)
41 @PropertySource(value = "file:${schema.ingest.file}", ignoreResourceNotFound = true)
42 @Configuration
43 public class EdgesConfiguration {
44
45     private static final String CONFIG_TRANSLATOR = "config";
46     private static final String SCHEMA_SERVICE_TRANSLATOR = "schema-service";
47
48     @Autowired(required = false)
49     SchemaServiceConfiguration schemaConfiguration;
50
51     @Autowired(required = false)
52     ConfigConfiguration configConfiguration;
53
54     @Autowired(required = false)
55     TranslatorConfiguration translatorConfiguration;
56
57     @Value("${schema.translator.list}")
58     private String[] translatorArray;
59
60     public Set<Translator> translators() {
61         Set<Translator> translators = new HashSet<>();
62
63         List<String> translatorList = Arrays.asList(translatorArray);
64         if (translatorList.contains(SCHEMA_SERVICE_TRANSLATOR)) {
65             translators.add(schemaConfiguration.schemaServiceTranslator());
66         } else {
67             translators.add(translatorConfiguration.configTranslator);
68         }
69         return translators;
70     }
71
72     @Bean(name = "edgeIngestor")
73     public EdgeIngestor edgeIngestor() {
74         return new EdgeIngestor(translators());
75     }
76
77 }