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 java.lang.Object implements RedirectHandler
Deprecated.(4.1) useDefaultRedirectStrategy.Default implementation ofRedirectHandler.- Since:
- 4.0
-
-
Field Summary
Fields Modifier and Type Field Description private org.apache.commons.logging.LoglogDeprecated.private static java.lang.StringREDIRECT_LOCATIONSDeprecated.
-
Constructor Summary
Constructors Constructor Description DefaultRedirectHandler()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.net.URIgetLocationURI(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 Detail
-
log
private final org.apache.commons.logging.Log log
Deprecated.
-
REDIRECT_LOCATIONS
private static final java.lang.String REDIRECT_LOCATIONS
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
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 java.net.URI getLocationURI(org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) throws org.apache.http.ProtocolExceptionDeprecated.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
-
-