Package org.apache.http.impl.client
Class DefaultRedirectHandler
java.lang.Object
org.apache.http.impl.client.DefaultRedirectHandler
- All Implemented Interfaces:
RedirectHandler
@Contract(threading=IMMUTABLE)
@Deprecated
public class DefaultRedirectHandler
extends Object
implements RedirectHandler
Deprecated.
Default implementation of
RedirectHandler.- Since:
- 4.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final org.apache.commons.logging.LogDeprecated.private static final StringDeprecated. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetLocationURI(org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) Deprecated.Determines the location request is expected to be redirected to given the response from the target server and the current request execution context.booleanisRedirectRequested(org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) Deprecated.Determines if a request should be redirected to a new location given the response from the target server.
-
Field Details
-
log
private final org.apache.commons.logging.Log logDeprecated. -
REDIRECT_LOCATIONS
Deprecated.- See Also:
-
-
Constructor Details
-
DefaultRedirectHandler
public DefaultRedirectHandler()Deprecated.
-
-
Method Details
-
isRedirectRequested
public boolean isRedirectRequested(org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) Deprecated.Description copied from interface:RedirectHandlerDetermines if a request should be redirected to a new location given the response from the target server.- Specified by:
isRedirectRequestedin interfaceRedirectHandler- Parameters:
response- the response received from the target servercontext- the context for the request execution- Returns:
trueif the request should be redirected,falseotherwise
-
getLocationURI
public URI getLocationURI(org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) throws org.apache.http.ProtocolException Deprecated.Description copied from interface:RedirectHandlerDetermines the location request is expected to be redirected to given the response from the target server and the current request execution context.- Specified by:
getLocationURIin interfaceRedirectHandler- Parameters:
response- the response received from the target servercontext- the context for the request execution- Returns:
- redirect URI
- Throws:
org.apache.http.ProtocolException
-
DefaultRedirectStrategy.