2  * ============LICENSE_START=======================================================
 
   3  * ONAP : ccsdk features
 
   4  * ================================================================================
 
   5  * Copyright (C) 2021 highstreet technologies GmbH Intellectual Property.
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *     http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.onap.ccsdk.features.sdnr.wt.oauthprovider.http.client;
 
  24 import java.io.IOException;
 
  26 import java.util.Optional;
 
  27 import org.onap.ccsdk.features.sdnr.wt.common.http.BaseHTTPClient;
 
  28 import org.slf4j.Logger;
 
  29 import org.slf4j.LoggerFactory;
 
  31 public class MappingBaseHttpClient extends BaseHTTPClient {
 
  33     private static Logger LOG = LoggerFactory.getLogger(MappingBaseHttpClient.class);
 
  35     public MappingBaseHttpClient(String base, boolean trustAllCerts) {
 
  36         super(base, trustAllCerts);
 
  39     public MappingBaseHttpClient(String host) {
 
  43     public <T> Optional<MappedBaseHttpResponse<String>> sendMappedRequest(String uri, String method, String body,
 
  44             Map<String, String> headers) {
 
  45         return this.sendMappedRequest(uri, method, body != null ? body.getBytes(CHARSET) : null, headers, String.class);
 
  48     public <T> Optional<MappedBaseHttpResponse<T>> sendMappedRequest(String uri, String method, String body,
 
  49             Map<String, String> headers, Class<T> clazz) {
 
  50         return this.sendMappedRequest(uri, method, body != null ? body.getBytes(CHARSET) : null, headers, clazz);
 
  53     protected <T> Optional<MappedBaseHttpResponse<T>> sendMappedRequest(String uri, String method, byte[] body,
 
  54             Map<String, String> headers, Class<T> clazz) {
 
  56             return Optional.of(new MappedBaseHttpResponse<T>(this.sendRequest(uri, method, body, headers), clazz));
 
  57         } catch (IOException e) {
 
  58             LOG.warn("problem during request for {}: ", uri, e);
 
  60         return Optional.empty();