[AAI] Fix doc config files
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / config / NodesConfiguration.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 org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 import java.util.Arrays;
29 import java.util.HashSet;
30 import java.util.List;
31 import java.util.Set;
32
33 import org.onap.aai.nodes.NodeIngestor;
34 import org.onap.aai.setup.Translator;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.springframework.beans.factory.annotation.Value;
37 import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
38 import org.springframework.context.annotation.Bean;
39 import org.springframework.context.annotation.Configuration;
40 import org.springframework.context.annotation.Import;
41 import org.springframework.context.annotation.PropertySource;
42
43 @Import({SchemaServiceConfiguration.class, ConfigConfiguration.class, TranslatorConfiguration.class})
44 @PropertySource(value = "classpath:schema-ingest.properties", ignoreResourceNotFound = true)
45 @PropertySource(value = "file:${schema.ingest.file}", ignoreResourceNotFound = true)
46
47 @Configuration
48 public class NodesConfiguration {
49
50     private static final String SCHEMA_SERVICE_TRANSLATOR = "schema-service";
51     private static final Logger LOGGER = LoggerFactory.getLogger(NodesConfiguration.class);
52
53     @Autowired(required = false)
54     SchemaServiceConfiguration schemaConfiguration;
55
56     @Autowired(required = false)
57     ConfigConfiguration configConfiguration;
58
59     @Autowired(required = false)
60     TranslatorConfiguration translatorConfiguration;
61
62     @Value("${schema.translator.list}")
63     private String[] translatorArray;
64
65     public Set<Translator> translators() {
66         Set<Translator> translators = new HashSet<>();
67
68         List<String> translatorList = Arrays.asList(translatorArray);
69         if (translatorList.contains(SCHEMA_SERVICE_TRANSLATOR)) {
70             LOGGER.info("Translator is SchemaServiceTranslator");
71             translators.add(schemaConfiguration.schemaServiceTranslator());
72         } else {
73             LOGGER.info("Translator is ConfigTranslator");
74             translators.add(translatorConfiguration.configTranslator);
75         }
76         return translators;
77     }
78
79     @Bean(name = "nodeIngestor")
80     @ConditionalOnExpression("'${schema.translators.needed:all}'.contains('nodes') || '${schema.translators.needed:all}'.contains('all')")
81     public NodeIngestor nodeIngestor() {
82         return new NodeIngestor(translators());
83     }
84
85 }