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