05d5ec0f1a00281bfc9e41708696ff2b5984b5c2
[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.http.HttpHeaders;
30 import org.springframework.http.MediaType;
31 import org.springframework.stereotype.Component;
32 import org.springframework.util.MultiValueMap;
33
34 @Component(value = ClientType.AAI)
35 public class AAIRestClient extends TwoWaySSLRestClient {
36
37     private static Logger logger = LoggerFactory.getLogger(AAIRestClient.class);
38
39     @Value("${aai.base.url}")
40     private String baseUrl;
41
42     @Value("${aai.ssl.key-store}")
43     private String keystorePath;
44
45     @Value("${aai.ssl.trust-store}")
46     private String truststorePath;
47
48     @Value("${aai.ssl.key-store-password}")
49     private String keystorePassword;
50
51     @Value("${aai.ssl.trust-store-password}")
52     private String truststorePassword;
53
54     @Override
55     public String getBaseUrl() {
56         return baseUrl;
57     }
58
59     @Override
60     protected String getKeystorePath() {
61         return keystorePath;
62     }
63
64     @Override
65     protected String getTruststorePath() {
66         return truststorePath;
67     }
68
69     @Override
70     protected char[] getKeystorePassword() {
71         return keystorePassword.toCharArray();
72     }
73
74     @Override
75     protected char[] getTruststorePassword() {
76         return truststorePassword.toCharArray();
77     }
78
79     @Override
80     public MultiValueMap<String, String> getHeaders(Map<String, String> headers) {
81         HttpHeaders httpHeaders = new HttpHeaders();
82         httpHeaders.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON));
83         httpHeaders.setContentType(MediaType.APPLICATION_JSON);
84         httpHeaders.add("Real-Time", "true");
85         headers.forEach(httpHeaders::add);
86         return httpHeaders;
87     }
88
89 }