Android
org.apache.http.client
public interface

org.apache.http.client.RedirectHandler

org.apache.http.client.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

Summary

Public Methods

          URI  getLocationURI(HttpResponse response, 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.
          boolean  isRedirectRequested(HttpResponse response, HttpContext context)
Determines if a request should be redirected to a new location given the response from the target server.

Details

Public Methods

public URI getLocationURI(HttpResponse response, 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.

Parameters

response the response received from the target server
context the context for the request execution

Returns

  • redirect URI

public boolean isRedirectRequested(HttpResponse response, HttpContext context)

Determines if a request should be redirected to a new location given the response from the target server.

Parameters

response the response received from the target server
context the context for the request execution

Returns

  • true if the request should be redirected, false otherwise
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:56