Uses of Interface
org.apache.http.client.HttpClient

Packages that use HttpClient
org.apache.http.client.fluent   
org.apache.http.client.utils Helpers and utility classes for HttpClient
org.apache.http.impl.client Default implementations for interfaces in org.apache.http.client
org.apache.http.impl.client.cache This package contains a cache module that can be used for HTTP/1.1 client-side caching. 
 

Uses of HttpClient in org.apache.http.client.fluent
 

Methods in org.apache.http.client.fluent with parameters of type HttpClient
static Executor Executor.newInstance(HttpClient httpclient)
           
 

Uses of HttpClient in org.apache.http.client.utils
 

Methods in org.apache.http.client.utils with parameters of type HttpClient
static void HttpClientUtils.closeQuietly(HttpClient httpClient)
          Deprecated. (4.3) do not use.
 

Uses of HttpClient in org.apache.http.impl.client
 

Classes in org.apache.http.impl.client that implement HttpClient
 class AbstractHttpClient
          Deprecated. (4.3) use HttpClientBuilder.
 class AutoRetryHttpClient
          Deprecated. (4.3) use HttpClientBuilder.
 class CloseableHttpClient
          Minimal implementation of HttpClient that also implements Closeable.
 class ContentEncodingHttpClient
          Deprecated. (4.2) use HttpClientBuilder
 class DecompressingHttpClient
          Deprecated. (4.3) use HttpClientBuilder
 class DefaultHttpClient
          Deprecated. (4.3) use HttpClientBuilder.
 class SystemDefaultHttpClient
          Deprecated. (4.3) use HttpClientBuilder
 

Methods in org.apache.http.impl.client that return HttpClient
 HttpClient DecompressingHttpClient.getHttpClient()
          Deprecated. Gets the HttpClient to issue request.
 

Constructors in org.apache.http.impl.client with parameters of type HttpClient
AutoRetryHttpClient(HttpClient client)
          Deprecated. Constructs a AutoRetryHttpClient with default caching settings that stores cache entries in memory and uses the given HttpClient for backend requests.
AutoRetryHttpClient(HttpClient client, ServiceUnavailableRetryStrategy retryStrategy)
          Deprecated.  
DecompressingHttpClient(HttpClient backend)
          Deprecated. Constructs a decorator to ask for and handle compressed entities on the fly.
 

Uses of HttpClient in org.apache.http.impl.client.cache
 

Classes in org.apache.http.impl.client.cache that implement HttpClient
 class CachingHttpClient
          Deprecated. (4.3) use CachingHttpClientBuilder or CachingHttpClients.
 

Constructors in org.apache.http.impl.client.cache with parameters of type HttpClient
CachingHttpClient(HttpClient client)
          Deprecated. Constructs a CachingHttpClient with default caching settings that stores cache entries in memory and uses the given HttpClient for backend requests.
CachingHttpClient(HttpClient client, CacheConfig config)
          Deprecated. Constructs a CachingHttpClient with the given caching options that stores cache entries in memory and uses the given HttpClient for backend requests.
CachingHttpClient(HttpClient client, HttpCacheStorage storage, CacheConfig config)
          Deprecated. Constructs a CachingHttpClient with the given caching options that stores cache entries in the provided storage backend and uses the given HttpClient for backend requests.
CachingHttpClient(HttpClient client, ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config)
          Deprecated. Constructs a CachingHttpClient with the given caching options that stores cache entries in the provided storage backend and uses the given HttpClient for backend requests.
 



Copyright © 1999-2013 The Apache Software Foundation. All Rights Reserved.