AAI-1523 Batch reformat aai-schema-ingest
[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
23 package org.onap.aai.config;
24
25 import java.util.Arrays;
26 import java.util.HashSet;
27 import java.util.List;
28 import java.util.Set;
29
30 import org.onap.aai.edges.EdgeIngestor;
31 import org.onap.aai.setup.Translator;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.beans.factory.annotation.Value;
34 import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
35 import org.springframework.context.annotation.Bean;
36 import org.springframework.context.annotation.Configuration;
37 import org.springframework.context.annotation.Import;
38 import org.springframework.context.annotation.PropertySource;
39
40 @Import({SchemaServiceConfiguration.class, ConfigConfiguration.class, TranslatorConfiguration.class})
41 @PropertySource(value = "classpath:schema-ingest.properties", ignoreResourceNotFound = true)
42 @PropertySource(value = "file:${schema.ingest.file}", ignoreResourceNotFound = true)
43
44 @Configuration
45 public class EdgesConfiguration {
46
47     private static final String CONFIG_TRANSLATOR = "config";
48     private static final String SCHEMA_SERVICE_TRANSLATOR = "schema-service";
49
50     @Autowired(required = false)
51     SchemaServiceConfiguration schemaConfiguration;
52
53     @Autowired(required = false)
54     ConfigConfiguration configConfiguration;
55
56     @Autowired(required = false)
57     TranslatorConfiguration translatorConfiguration;
58
59     @Value("${schema.translator.list}")
60     private String[] translatorArray;
61
62     public Set<Translator> translators() {
63         Set<Translator> translators = new HashSet<>();
64
65         List<String> translatorList = Arrays.asList(translatorArray);
66         if (translatorList.contains(SCHEMA_SERVICE_TRANSLATOR)) {
67             translators.add(schemaConfiguration.schemaServiceTranslator());
68         } else {
69             translators.add(translatorConfiguration.configTranslator);
70         }
71         return translators;
72     }
73
74     @Bean(name = "edgeIngestor")
75     @ConditionalOnExpression("'${schema.translators.needed:all}'.contains('edges') || '${schema.translators.needed:all}'.contains('all')")
76     public EdgeIngestor edgeIngestor() {
77         return new EdgeIngestor(translators());
78     }
79
80 }