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 RedirectHandlerhandlerDeprecated.
-
Constructor Summary
Constructors Constructor Description DefaultRedirectStrategyAdaptor(RedirectHandler handler)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description RedirectHandlergetHandler()Deprecated.HttpUriRequestgetRedirect(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.booleanisRedirected(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.ProtocolExceptionDeprecated.Description copied from interface:RedirectStrategyDetermines if a request should be redirected to a new location given the response from the target server.- Specified by:
isRedirectedin interfaceRedirectStrategy- Parameters:
request- the executed requestresponse- the response received from the target servercontext- the context for the request execution- Returns:
trueif the request should be redirected,falseotherwise- 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:RedirectStrategyDetermines 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:
getRedirectin 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.
-
-