Enhancements for the aai-common library
[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 org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
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.springframework.boot.web.client.RestTemplateBuilder;
29 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
30 import org.springframework.web.client.RestTemplate;
31
32 import javax.annotation.PostConstruct;
33
34 public abstract class NoAuthRestClient extends RestClient {
35
36     private static Logger logger = LoggerFactory.getLogger(NoAuthRestClient.class);
37
38     protected RestTemplate restTemplate;
39
40     @PostConstruct
41     public void init() throws Exception {
42         restTemplate =
43             new RestTemplateBuilder().requestFactory(this.getHttpRequestFactory()).build();
44         restTemplate.setErrorHandler(new RestClientResponseErrorHandler());
45         RestClientLoggingInterceptor loggingInterceptor = new RestClientLoggingInterceptor();
46         restTemplate.getInterceptors().add(loggingInterceptor);
47
48     }
49
50     protected HttpComponentsClientHttpRequestFactory getHttpRequestFactory() throws Exception {
51         return new HttpComponentsClientHttpRequestFactory(this.getClient());
52     }
53
54     protected HttpClient getClient() throws Exception {
55         HttpClient client = HttpClients.createDefault();
56         return client;
57     }
58
59     @Override
60     public RestTemplate getRestTemplate() {
61         return restTemplate;
62     }
63
64 }