Add first version of startup
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / controllers / StartupService.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.oransc.policyagent.controllers;
22
23 import java.util.Vector;
24 import org.oransc.policyagent.configuration.ApplicationConfig;
25 import org.oransc.policyagent.configuration.RicConfig;
26 import org.oransc.policyagent.repository.Ric;
27 import org.oransc.policyagent.repository.Rics;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.stereotype.Service;
32
33 /**
34  * Loads information about RealTime-RICs at startup.
35  */
36 @Service("startupService")
37 public class StartupService {
38
39     private static final Logger logger = LoggerFactory.getLogger(StartupService.class);
40
41     @Autowired
42     ApplicationConfig applicationConfig;
43
44     @Autowired
45     private Rics rics;
46
47     StartupService(ApplicationConfig appConfig, Rics rics) {
48         this.applicationConfig = appConfig;
49         this.rics = rics;
50     }
51
52     public void startup() {
53         applicationConfig.initialize();
54         Vector<RicConfig> ricConfigs = applicationConfig.getRicConfigs();
55         for (RicConfig ricConfig : ricConfigs) {
56             logger.error("Ric: {}", ricConfig);
57             Ric ric = new Ric(ricConfig);
58             rics.put(ric);
59         }
60
61     }
62
63 }