public interface RedirectStrategy
Implementations of this interface must be thread-safe. Access to shared data must be synchronized as methods of this interface may be executed from multiple threads.
Modifier and Type | Method and Description |
---|---|
HttpUriRequest |
getRedirect(HttpRequest request,
HttpResponse response,
HttpContext context)
Determines the redirect location given the response from the target
server and the current request execution context and generates a new
request to be sent to the location.
|
boolean |
isRedirected(HttpRequest request,
HttpResponse response,
HttpContext context)
Determines if a request should be redirected to a new location
given the response from the target server.
|
boolean isRedirected(HttpRequest request, HttpResponse response, HttpContext context) throws ProtocolException
request
- the executed requestresponse
- the response received from the target servercontext
- the context for the request executiontrue
if the request should be redirected, false
otherwiseProtocolException
HttpUriRequest getRedirect(HttpRequest request, HttpResponse response, HttpContext context) throws ProtocolException
request
- the executed requestresponse
- the response received from the target servercontext
- the context for the request executionProtocolException
Copyright © 1999–2013 The Apache Software Foundation. All rights reserved.