add xapp deploy dialog, call backend api
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oranosc / ric / portal / dash / config / E2ManagerConfiguration.java
1 /*-
2  * ========================LICENSE_START=================================
3  * ORAN-OSC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
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.oranosc.ric.portal.dash.config;
21
22 import org.oranosc.ric.e2mgr.client.api.DefaultApi;
23 import org.oranosc.ric.e2mgr.client.invoker.ApiClient;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.beans.factory.annotation.Value;
26 import org.springframework.context.annotation.Bean;
27 import org.springframework.context.annotation.Configuration;
28 import org.springframework.util.Assert;
29 import org.springframework.web.client.RestTemplate;
30
31 /**
32  * Creates an E2 manager client as a bean to be managed by the Spring container.
33  */
34 @Configuration
35 public class E2ManagerConfiguration {
36
37         // Populated by the autowired constructor
38         private final String e2mgrBasepath;
39
40         @Autowired
41         public E2ManagerConfiguration(@Value("${e2mgr.basepath}") final String e2mgrBasepath) {
42                 Assert.notNull(e2mgrBasepath, "base path must not be null");
43                 this.e2mgrBasepath = e2mgrBasepath;
44         }
45
46         /**
47          * @return A DefaultApi with an ApiClient configured from properties
48          */
49         @Bean
50         public DefaultApi e2ManagerClient() {
51                 ApiClient apiClient = new ApiClient(new RestTemplate());
52                 apiClient.setBasePath(e2mgrBasepath);
53                 return new DefaultApi(apiClient);
54         }
55
56 }