public class

DefaultRedirectHandler

extends Object
implements RedirectHandler
java.lang.Object
   ↳ org.apache.http.impl.client.DefaultRedirectHandler

This class is deprecated.
use DefaultRedirectStrategy.

Class Overview

Default implementation of RedirectHandler.

Summary

Public Constructors
DefaultRedirectHandler()
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.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.apache.http.client.RedirectHandler

Public Constructors

public DefaultRedirectHandler ()

Also: HttpClient

Public Methods

public URI getLocationURI (HttpResponse response, HttpContext context)

Also: HttpClient

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)

Also: HttpClient

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