Uses of Class
org.apache.http.client.config.RequestConfig
-
Packages that use RequestConfig Package Description org.apache.http.client.config Client configuration APIs.org.apache.http.client.fluent Simple facade APIs for HttpClient based on the concept of a fluent interface.org.apache.http.client.methods Standard HTTP method implementations.org.apache.http.client.params Deprecated.org.apache.http.client.protocol Client specific HTTP protocol handlers.org.apache.http.impl.client Default HTTP client implementation. -
-
Uses of RequestConfig in org.apache.http.client.config
Fields in org.apache.http.client.config declared as RequestConfig Modifier and Type Field Description static RequestConfig
RequestConfig. DEFAULT
Methods in org.apache.http.client.config that return RequestConfig Modifier and Type Method Description RequestConfig
RequestConfig.Builder. build()
protected RequestConfig
RequestConfig. clone()
Methods in org.apache.http.client.config with parameters of type RequestConfig Modifier and Type Method Description static RequestConfig.Builder
RequestConfig. copy(RequestConfig config)
-
Uses of RequestConfig in org.apache.http.client.fluent
Fields in org.apache.http.client.fluent declared as RequestConfig Modifier and Type Field Description private RequestConfig
InternalHttpRequest. config
Methods in org.apache.http.client.fluent that return RequestConfig Modifier and Type Method Description RequestConfig
InternalHttpRequest. getConfig()
Methods in org.apache.http.client.fluent with parameters of type RequestConfig Modifier and Type Method Description void
InternalHttpRequest. setConfig(RequestConfig config)
-
Uses of RequestConfig in org.apache.http.client.methods
Fields in org.apache.http.client.methods declared as RequestConfig Modifier and Type Field Description private RequestConfig
HttpRequestBase. config
private RequestConfig
RequestBuilder. config
Methods in org.apache.http.client.methods that return RequestConfig Modifier and Type Method Description RequestConfig
Configurable. getConfig()
Returns actual request configuration.RequestConfig
HttpRequestBase. getConfig()
RequestConfig
RequestBuilder. getConfig()
Methods in org.apache.http.client.methods with parameters of type RequestConfig Modifier and Type Method Description void
HttpRequestBase. setConfig(RequestConfig config)
RequestBuilder
RequestBuilder. setConfig(RequestConfig config)
-
Uses of RequestConfig in org.apache.http.client.params
Methods in org.apache.http.client.params that return RequestConfig Modifier and Type Method Description static RequestConfig
HttpClientParamConfig. getRequestConfig(org.apache.http.params.HttpParams params)
Deprecated.static RequestConfig
HttpClientParamConfig. getRequestConfig(org.apache.http.params.HttpParams params, RequestConfig defaultConfig)
Deprecated.Methods in org.apache.http.client.params with parameters of type RequestConfig Modifier and Type Method Description static RequestConfig
HttpClientParamConfig. getRequestConfig(org.apache.http.params.HttpParams params, RequestConfig defaultConfig)
Deprecated. -
Uses of RequestConfig in org.apache.http.client.protocol
Methods in org.apache.http.client.protocol that return RequestConfig Modifier and Type Method Description RequestConfig
HttpClientContext. getRequestConfig()
Methods in org.apache.http.client.protocol with parameters of type RequestConfig Modifier and Type Method Description void
HttpClientContext. setRequestConfig(RequestConfig config)
-
Uses of RequestConfig in org.apache.http.impl.client
Fields in org.apache.http.impl.client declared as RequestConfig Modifier and Type Field Description private RequestConfig
InternalHttpClient. defaultConfig
private RequestConfig
HttpClientBuilder. defaultRequestConfig
private RequestConfig
ProxyClient. requestConfig
Methods in org.apache.http.impl.client that return RequestConfig Modifier and Type Method Description RequestConfig
InternalHttpClient. getConfig()
Methods in org.apache.http.impl.client with parameters of type RequestConfig Modifier and Type Method Description (package private) abstract java.util.Collection<java.lang.String>
AuthenticationStrategyImpl. getPreferredAuthSchemes(RequestConfig config)
(package private) java.util.Collection<java.lang.String>
ProxyAuthenticationStrategy. getPreferredAuthSchemes(RequestConfig config)
(package private) java.util.Collection<java.lang.String>
TargetAuthenticationStrategy. getPreferredAuthSchemes(RequestConfig config)
HttpClientBuilder
HttpClientBuilder. setDefaultRequestConfig(RequestConfig config)
Assigns defaultRequestConfig
instance which will be used for request execution if not explicitly set in the client execution context.Constructors in org.apache.http.impl.client with parameters of type RequestConfig Constructor Description InternalHttpClient(ClientExecChain execChain, HttpClientConnectionManager connManager, HttpRoutePlanner routePlanner, org.apache.http.config.Lookup<CookieSpecProvider> cookieSpecRegistry, org.apache.http.config.Lookup<AuthSchemeProvider> authSchemeRegistry, CookieStore cookieStore, CredentialsProvider credentialsProvider, RequestConfig defaultConfig, java.util.List<java.io.Closeable> closeables)
ProxyClient(RequestConfig requestConfig)
ProxyClient(HttpConnectionFactory<HttpRoute,ManagedHttpClientConnection> connFactory, org.apache.http.config.ConnectionConfig connectionConfig, RequestConfig requestConfig)
-