add xapp deploy dialog, call backend api
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oranosc / ric / portal / dash / config / XappManagerConfiguration.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.xappmgr.client.api.DefaultApi;
23 import org.oranosc.ric.xappmgr.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 xApp manager client as a bean to be managed by the Spring
33  * container.
34  */
35 @Configuration
36 public class XappManagerConfiguration {
37
38         // Populated by the autowired constructor
39         private final String xappMgrBasepath;
40
41         @Autowired
42         public XappManagerConfiguration(@Value("${xappmgr.basepath}") final String xappMgrBasepath) {
43                 Assert.notNull(xappMgrBasepath, "base path must not be null");
44                 this.xappMgrBasepath = xappMgrBasepath;
45         }
46
47         /**
48          * @return A DefaultApi with an ApiClient configured from properties
49          */
50         @Bean
51         public DefaultApi xappClient() {
52                 ApiClient apiClient = new ApiClient(new RestTemplate());
53                 apiClient.setBasePath(xappMgrBasepath);
54                 return new DefaultApi(apiClient);
55         }
56
57 }