Only load SchemaService related beans in aai-common when schema.translator.list=schem...
[aai/aai-common.git] / aai-rest / src / main / java / org / onap / aai / restclient / AAIRestClient.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2019 AT&T 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
21 package org.onap.aai.restclient;
22
23 import java.util.Collections;
24 import java.util.Map;
25
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28 import org.springframework.beans.factory.annotation.Value;
29 import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
30 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
31 import org.springframework.context.annotation.Conditional;
32 import org.springframework.http.HttpHeaders;
33 import org.springframework.http.MediaType;
34 import org.springframework.stereotype.Component;
35 import org.springframework.util.MultiValueMap;
36
37 @Component(value = ClientType.AAI)
38 @ConditionalOnExpression("${aai-rest-client.enabled:false}")
39 public class AAIRestClient extends TwoWaySSLRestClient {
40
41     private static Logger logger = LoggerFactory.getLogger(AAIRestClient.class);
42
43     @Value("${aai.base.url}")
44     private String baseUrl;
45
46     @Value("${aai.ssl.key-store}")
47     private String keystorePath;
48
49     @Value("${aai.ssl.trust-store}")
50     private String truststorePath;
51
52     @Value("${aai.ssl.key-store-password}")
53     private String keystorePassword;
54
55     @Value("${aai.ssl.trust-store-password}")
56     private String truststorePassword;
57
58     @Override
59     public String getBaseUrl() {
60         return baseUrl;
61     }
62
63     @Override
64     protected String getKeystorePath() {
65         return keystorePath;
66     }
67
68     @Override
69     protected String getTruststorePath() {
70         return truststorePath;
71     }
72
73     @Override
74     protected char[] getKeystorePassword() {
75         return keystorePassword.toCharArray();
76     }
77
78     @Override
79     protected char[] getTruststorePassword() {
80         return truststorePassword.toCharArray();
81     }
82
83     @Override
84     public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
85         HttpHeaders httpHeaders = new HttpHeaders();
86         httpHeaders.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON));
87         httpHeaders.setContentType(MediaType.APPLICATION_JSON);
88         httpHeaders.add("Real-Time", "true");
89         headers.forEach(httpHeaders::add);
90         return httpHeaders;
91     }
92
93 }