Package org.apache.http.impl.client
Class DefaultRedirectStrategyAdaptor
- java.lang.Object
-
- org.apache.http.impl.client.DefaultRedirectStrategyAdaptor
-
- All Implemented Interfaces:
RedirectStrategy
@Contract(threading=IMMUTABLE) @Deprecated class DefaultRedirectStrategyAdaptor extends java.lang.Object implements RedirectStrategy
Deprecated.(4.1) do not use
-
-
Field Summary
Fields Modifier and Type Field Description private RedirectHandler
handler
Deprecated.
-
Constructor Summary
Constructors Constructor Description DefaultRedirectStrategyAdaptor(RedirectHandler handler)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description RedirectHandler
getHandler()
Deprecated.HttpUriRequest
getRedirect(org.apache.http.HttpRequest request, org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context)
Deprecated.Determines the redirect location given the response from the target server and the current request execution context and generates a new request to be sent to the location.boolean
isRedirected(org.apache.http.HttpRequest request, 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
-
handler
private final RedirectHandler handler
Deprecated.
-
-
Constructor Detail
-
DefaultRedirectStrategyAdaptor
public DefaultRedirectStrategyAdaptor(RedirectHandler handler)
Deprecated.
-
-
Method Detail
-
isRedirected
public boolean isRedirected(org.apache.http.HttpRequest request, org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) throws org.apache.http.ProtocolException
Deprecated.Description copied from interface:RedirectStrategy
Determines if a request should be redirected to a new location given the response from the target server.- Specified by:
isRedirected
in interfaceRedirectStrategy
- Parameters:
request
- the executed requestresponse
- the response received from the target servercontext
- the context for the request execution- Returns:
true
if the request should be redirected,false
otherwise- Throws:
org.apache.http.ProtocolException
-
getRedirect
public HttpUriRequest getRedirect(org.apache.http.HttpRequest request, org.apache.http.HttpResponse response, org.apache.http.protocol.HttpContext context) throws org.apache.http.ProtocolException
Deprecated.Description copied from interface:RedirectStrategy
Determines the redirect location given the response from the target server and the current request execution context and generates a new request to be sent to the location.- Specified by:
getRedirect
in interfaceRedirectStrategy
- Parameters:
request
- the executed requestresponse
- the response received from the target servercontext
- the context for the request execution- Returns:
- redirected request
- Throws:
org.apache.http.ProtocolException
-
getHandler
public RedirectHandler getHandler()
Deprecated.
-
-