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

Packages that use ResponseHandler
org.apache.http.client The API for client-side HTTP communication. 
org.apache.http.impl.client Default implementations for interfaces in org.apache.http.client
 

Uses of ResponseHandler in org.apache.http.client
 

Methods in org.apache.http.client with parameters of type ResponseHandler
<T> T
HttpClient.execute(HttpHost target, HttpRequest request, ResponseHandler<? extends T> responseHandler)
          Executes a request to the target using the default context and processes the response using the given response handler.
<T> T
HttpClient.execute(HttpHost target, HttpRequest request, ResponseHandler<? extends T> responseHandler, HttpContext context)
          Executes a request to the target using the given context and processes the response using the given response handler.
<T> T
HttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
          Executes a request using the default context and processes the response using the given response handler.
<T> T
HttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, HttpContext context)
          Executes a request using the given context and processes the response using the given response handler.
 

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

Classes in org.apache.http.impl.client that implement ResponseHandler
 class BasicResponseHandler
          A ResponseHandler that returns the response body as a String for successful (2xx) responses.
 

Methods in org.apache.http.impl.client with parameters of type ResponseHandler
<T> T
AbstractHttpClient.execute(HttpHost target, HttpRequest request, ResponseHandler<? extends T> responseHandler)
           
<T> T
AbstractHttpClient.execute(HttpHost target, HttpRequest request, ResponseHandler<? extends T> responseHandler, HttpContext context)
           
<T> T
AbstractHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
           
<T> T
AbstractHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, HttpContext context)
           
 



Copyright © 1999-2010 Apache Software Foundation. All Rights Reserved.