FileDocCategorySizeDatePackage
RedirectHandler.javaAPI DocAndroid 1.5 API2977Wed May 06 22:41:10 BST 2009org.apache.http.client

RedirectHandler

public interface RedirectHandler
A handler for determining if an HTTP request should be redirected to a new location in response to an HTTP response received from the target server.

Classes implementing this interface must synchronize access to shared data as methods of this interfrace may be executed from multiple threads

author
Oleg Kalnichevski

Fields Summary
Constructors Summary
Methods Summary
public java.net.URIgetLocationURI(org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context)
Determines the location request is expected to be redirected to given the response from the target server and the current request execution context.

param
response the response received from the target server
param
context the context for the request execution
return
redirect URI

public booleanisRedirectRequested(org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context)
Determines if a request should be redirected to a new location given the response from the target server.

param
response the response received from the target server
param
context the context for the request execution
return
true if the request should be redirected, false otherwise