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