2d7775dcf14ce43512885c151ffe22ada91e5b41
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / config / BeanConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2024 Deutsche Telekom AG 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.modelloader.config;
21
22 import java.io.IOException;
23 import java.io.InputStream;
24 import java.nio.file.Files;
25 import java.nio.file.Paths;
26 import java.util.Properties;
27
28 import org.onap.aai.cl.api.Logger;
29 import org.onap.aai.cl.eelf.LoggerFactory;
30 import org.onap.aai.modelloader.notification.EventCallback;
31 import org.onap.aai.modelloader.service.BabelServiceClientFactory;
32 import org.onap.aai.modelloader.service.ModelLoaderMsgs;
33 import org.onap.sdc.api.IDistributionClient;
34 import org.onap.sdc.impl.DistributionClientFactory;
35 import org.springframework.beans.factory.annotation.Value;
36 import org.springframework.context.annotation.Bean;
37 import org.springframework.context.annotation.Configuration;
38
39 @Configuration
40 public class BeanConfig {
41
42     private static final Logger logger = LoggerFactory.getInstance().getLogger(BeanConfig.class);
43
44
45     @Value("${CONFIG_HOME}")
46     private String configDir;
47
48     @Bean
49     public ModelLoaderConfig modelLoaderConfig() throws IOException {
50         // Load model loader system configuration
51         logger.info(ModelLoaderMsgs.LOADING_CONFIGURATION);
52         ModelLoaderConfig.setConfigHome(configDir);
53         Properties configProperties = new Properties();
54         InputStream configInputStream = Files.newInputStream(Paths.get(configDir, "model-loader.properties"));
55         configProperties.load(configInputStream);
56         return new ModelLoaderConfig(configProperties);
57     }
58     
59     @Bean
60     public IDistributionClient iDistributionClient() {
61         return DistributionClientFactory.createDistributionClient();
62     }
63
64     @Bean
65     public EventCallback eventCallback(IDistributionClient client, ModelLoaderConfig config, BabelServiceClientFactory babelClientFactory) {
66         return new EventCallback(client, config, babelClientFactory);
67     }
68 }