All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.captaingoldfish.scim.sdk.client.http.ConfigManipulator Maven / Gradle / Ivy

There is a newer version: 1.26.0
Show newest version
package de.captaingoldfish.scim.sdk.client.http;

import org.apache.http.client.config.RequestConfig;
import org.apache.http.impl.client.HttpClientBuilder;


/**
 * author Pascal Knueppel 
* created at: 09.01.2020 - 10:27
*
* an optional interface that may be used to manipulate the apache http client configuration before the http * client is created */ public interface ConfigManipulator { /** * an optional method that may be used to manipulate the apache http client configuration before the http * client is created * * @param requestConfig the request configuration from apache */ public void modifyRequestConfig(RequestConfig.Builder requestConfig); /** * an optional method that may be used to manipulate the apache request configuration before the http client * is created * * @param clientBuilder the http client builder from apache */ public void modifyHttpClientConfig(HttpClientBuilder clientBuilder); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy