Merge "[AAI] Fix doc config files"
[aai/aai-common.git] / aai-rest / src / main / java / org / onap / aai / restclient / NoAuthRestClient.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 javax.annotation.PostConstruct;
24
25 import org.apache.http.client.HttpClient;
26 import org.apache.http.impl.client.HttpClients;
27 import org.onap.aai.aailog.filter.RestClientLoggingInterceptor;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
31 import org.springframework.web.client.RestTemplate;
32
33 public abstract class NoAuthRestClient extends RestClient {
34
35     private static Logger logger = LoggerFactory.getLogger(NoAuthRestClient.class);
36
37     protected RestTemplate restTemplate;
38
39     @PostConstruct
40     public void init() throws Exception {
41         restTemplate = new RestTemplate();
42         restTemplate.setRequestFactory(this.getHttpRequestFactory());
43         restTemplate.setErrorHandler(new RestClientResponseErrorHandler());
44         RestClientLoggingInterceptor loggingInterceptor = new RestClientLoggingInterceptor();
45         restTemplate.getInterceptors().add(loggingInterceptor);
46
47     }
48
49     protected HttpComponentsClientHttpRequestFactory getHttpRequestFactory() throws Exception {
50         return new HttpComponentsClientHttpRequestFactory(this.getClient());
51     }
52
53     protected HttpClient getClient() throws Exception {
54         HttpClient client = HttpClients.createDefault();
55         return client;
56     }
57
58     @Override
59     public RestTemplate getRestTemplate() {
60         return restTemplate;
61     }
62
63 }