Release dashboard image at version 2.1.0
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / config / RICInstanceConfiguration.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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.ric.portal.dashboard.config;
22
23 import java.lang.invoke.MethodHandles;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 import org.oransc.ric.portal.dashboard.model.RicRegion;
28 import org.oransc.ric.portal.dashboard.model.RicRegionList;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.boot.context.properties.ConfigurationProperties;
32 import org.springframework.context.annotation.Bean;
33 import org.springframework.context.annotation.Configuration;
34 import org.springframework.context.annotation.Profile;
35
36 /**
37  * Publishes a list of RIC instances from configuration, written as a YAML list
38  * in application properties like this:
39  * 
40  * <pre>
41   ricinstances:
42     regions:
43       -
44         name: Region ABC
45         instances:
46             -
47               key: key1
48               name: Friendly Name One
49               appUrlPrefix: http://foo.bar.one/
50             -
51               key: key2
52               name: Friendly Name Two
53               appUrlPrefix: http://foo.bar.two/
54       -
55         name: Region DEF
56         instances:
57             -
58               key: key3
59               name: Friendly Name Three
60               appUrlPrefix: http://foo.bar.three/
61  * </pre>
62  */
63 @Configuration
64 @ConfigurationProperties(prefix = "ricinstances")
65 @Profile("!test")
66 public class RICInstanceConfiguration {
67
68         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
69
70         private List<RicRegion> regions = new ArrayList<>();
71
72         // Called by spring with config data
73         public void setRegions(List<RicRegion> regions) {
74                 this.regions = regions;
75         }
76
77         @Bean
78         public RicRegionList ricRegions() {
79                 logger.debug("Creating bean ricRegions");
80                 return new RicRegionList(regions);
81         }
82
83 }