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
-
-
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(HttpResponse response, 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(HttpResponse response, HttpContext context)Deprecated.Determines if a request should be redirected to a new location given the response from the target server.
-
-
-
Method Detail
-
isRedirectRequested
public boolean isRedirectRequested(HttpResponse response, 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(HttpResponse response, HttpContext context) throws 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:
ProtocolException
-
-