org.apache.http.impl.client
Class DefaultHttpClient

java.lang.Object
  extended by org.apache.http.impl.client.CloseableHttpClient
      extended by org.apache.http.impl.client.AbstractHttpClient
          extended by org.apache.http.impl.client.DefaultHttpClient
All Implemented Interfaces:
Closeable, HttpClient
Direct Known Subclasses:
ContentEncodingHttpClient, SystemDefaultHttpClient

Deprecated. (4.3) use HttpClientBuilder see also CloseableHttpClient.

@Contract(threading=SAFE_CONDITIONAL)
@Deprecated
public class DefaultHttpClient
extends AbstractHttpClient

Default implementation of HttpClient pre-configured for most common use scenarios.

Please see the Javadoc for createHttpProcessor() for the details of the interceptors that are set up by default.

Additional interceptors can be added as follows, but take care not to add the same interceptor more than once.

 DefaultHttpClient httpclient = new DefaultHttpClient();
 httpclient.addRequestInterceptor(new RequestAcceptEncoding());
 httpclient.addResponseInterceptor(new ResponseContentEncoding());
 

This class sets up the following parameters if not explicitly set:

The following parameters can be used to customize the behavior of this class:

Since:
4.0

Constructor Summary
DefaultHttpClient()
          Deprecated.  
DefaultHttpClient(ClientConnectionManager conman)
          Deprecated.  
DefaultHttpClient(ClientConnectionManager conman, org.apache.http.params.HttpParams params)
          Deprecated. Creates a new HTTP client from parameters and a connection manager.
DefaultHttpClient(org.apache.http.params.HttpParams params)
          Deprecated.  
 
Method Summary
protected  org.apache.http.params.HttpParams createHttpParams()
          Deprecated. Creates the default set of HttpParams by invoking setDefaultHttpParams(HttpParams)
protected  org.apache.http.protocol.BasicHttpProcessor createHttpProcessor()
          Deprecated. Create the processor with the following interceptors: RequestDefaultHeaders RequestContent RequestTargetHost RequestClientConnControl RequestUserAgent RequestExpectContinue RequestAddCookies ResponseProcessCookies RequestAuthCache RequestTargetAuthentication RequestProxyAuthentication
static void setDefaultHttpParams(org.apache.http.params.HttpParams params)
          Deprecated. Saves the default set of HttpParams in the provided parameter.
 
Methods inherited from class org.apache.http.impl.client.AbstractHttpClient
addRequestInterceptor, addRequestInterceptor, addResponseInterceptor, addResponseInterceptor, clearRequestInterceptors, clearResponseInterceptors, close, createAuthSchemeRegistry, createClientConnectionManager, createClientRequestDirector, createClientRequestDirector, createClientRequestDirector, createConnectionKeepAliveStrategy, createConnectionReuseStrategy, createCookieSpecRegistry, createCookieStore, createCredentialsProvider, createHttpContext, createHttpRequestRetryHandler, createHttpRoutePlanner, createProxyAuthenticationHandler, createProxyAuthenticationStrategy, createRedirectHandler, createRequestExecutor, createTargetAuthenticationHandler, createTargetAuthenticationStrategy, createUserTokenHandler, determineParams, doExecute, getAuthSchemes, getBackoffManager, getConnectionBackoffStrategy, getConnectionKeepAliveStrategy, getConnectionManager, getConnectionReuseStrategy, getCookieSpecs, getCookieStore, getCredentialsProvider, getHttpProcessor, getHttpRequestRetryHandler, getParams, getProxyAuthenticationHandler, getProxyAuthenticationStrategy, getRedirectHandler, getRedirectStrategy, getRequestExecutor, getRequestInterceptor, getRequestInterceptorCount, getResponseInterceptor, getResponseInterceptorCount, getRoutePlanner, getTargetAuthenticationHandler, getTargetAuthenticationStrategy, getUserTokenHandler, removeRequestInterceptorByClass, removeResponseInterceptorByClass, setAuthSchemes, setBackoffManager, setConnectionBackoffStrategy, setCookieSpecs, setCookieStore, setCredentialsProvider, setHttpRequestRetryHandler, setKeepAliveStrategy, setParams, setProxyAuthenticationHandler, setProxyAuthenticationStrategy, setRedirectHandler, setRedirectStrategy, setReuseStrategy, setRoutePlanner, setTargetAuthenticationHandler, setTargetAuthenticationStrategy, setUserTokenHandler
 
Methods inherited from class org.apache.http.impl.client.CloseableHttpClient
execute, execute, execute, execute, execute, execute, execute, execute
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultHttpClient

public DefaultHttpClient(ClientConnectionManager conman,
                         org.apache.http.params.HttpParams params)
Deprecated. 
Creates a new HTTP client from parameters and a connection manager.

Parameters:
params - the parameters
conman - the connection manager

DefaultHttpClient

public DefaultHttpClient(ClientConnectionManager conman)
Deprecated. 
Since:
4.1

DefaultHttpClient

public DefaultHttpClient(org.apache.http.params.HttpParams params)
Deprecated. 

DefaultHttpClient

public DefaultHttpClient()
Deprecated. 
Method Detail

createHttpParams

protected org.apache.http.params.HttpParams createHttpParams()
Deprecated. 
Creates the default set of HttpParams by invoking setDefaultHttpParams(HttpParams)

Specified by:
createHttpParams in class AbstractHttpClient
Returns:
a new instance of SyncBasicHttpParams with the defaults applied to it.

setDefaultHttpParams

public static void setDefaultHttpParams(org.apache.http.params.HttpParams params)
Deprecated. 
Saves the default set of HttpParams in the provided parameter. These are:


createHttpProcessor

protected org.apache.http.protocol.BasicHttpProcessor createHttpProcessor()
Deprecated. 
Create the processor with the following interceptors:

Specified by:
createHttpProcessor in class AbstractHttpClient
Returns:
the processor with the added interceptors.


Copyright © 1999–2019 The Apache Software Foundation. All rights reserved.