Package org.apache.http.client
Interface RequestDirector
- 
- All Known Implementing Classes:
 DefaultRequestDirector
@Deprecated public interface RequestDirectorDeprecated.(4.3) No longer usedA client-side request director. The director decides which steps are necessary to execute a request. It establishes connections and optionally processes redirects and authentication challenges. The director may therefore generate and send a sequence of requests in order to execute one initial request.- Since:
 - 4.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description HttpResponseexecute(HttpHost target, HttpRequest request, HttpContext context)Deprecated.Executes a request. 
 - 
 
- 
- 
Method Detail
- 
execute
HttpResponse execute(HttpHost target, HttpRequest request, HttpContext context) throws HttpException, java.io.IOException
Deprecated.Executes a request.Note: For the time being, a new director is instantiated for each request. This is the same behavior as for
HttpMethodDirectorin HttpClient 3.- Parameters:
 target- the target host for the request. Implementations may acceptnullif they can still determine a route, for example to a default target or by inspecting the request.request- the request to executecontext- the context for executing the request- Returns:
 - the final response to the request. This is never an intermediate response with status code 1xx.
 - Throws:
 HttpException- in case of a problemjava.io.IOException- in case of an IO problem or if the connection was aborted
 
 - 
 
 -