@Contract(threading=STATELESS)
public interface RedirectStrategy
Implementations of this interface must be thread-safe. Access to shared data must be synchronized as methods of this interface may be executed from multiple threads.
Modifier and Type | Method and Description |
---|---|
URI |
getLocationURI(org.apache.hc.core5.http.HttpRequest request,
org.apache.hc.core5.http.HttpResponse response,
org.apache.hc.core5.http.protocol.HttpContext context) |
default boolean |
isRedirectAllowed(org.apache.hc.core5.http.HttpHost currentTarget,
org.apache.hc.core5.http.HttpHost newTarget,
org.apache.hc.core5.http.HttpRequest redirect,
org.apache.hc.core5.http.protocol.HttpContext context)
Determines if the given redirect should be executed or the redirect response
should be returned to the caller without further processing.
|
boolean |
isRedirected(org.apache.hc.core5.http.HttpRequest request,
org.apache.hc.core5.http.HttpResponse response,
org.apache.hc.core5.http.protocol.HttpContext context)
Determines if a request should be redirected to a new location
given the response from the target server.
|
boolean isRedirected(org.apache.hc.core5.http.HttpRequest request, org.apache.hc.core5.http.HttpResponse response, org.apache.hc.core5.http.protocol.HttpContext context) throws org.apache.hc.core5.http.HttpException
request
- the executed requestresponse
- the response received from the target servercontext
- the context for the request executiontrue
if the request should be redirected, false
otherwiseorg.apache.hc.core5.http.HttpException
URI getLocationURI(org.apache.hc.core5.http.HttpRequest request, org.apache.hc.core5.http.HttpResponse response, org.apache.hc.core5.http.protocol.HttpContext context) throws org.apache.hc.core5.http.HttpException
org.apache.hc.core5.http.HttpException
default boolean isRedirectAllowed(org.apache.hc.core5.http.HttpHost currentTarget, org.apache.hc.core5.http.HttpHost newTarget, org.apache.hc.core5.http.HttpRequest redirect, org.apache.hc.core5.http.protocol.HttpContext context)
It is legal for this method implementation to modify the redirect request in order to make it suitable for redirect execution.
Copyright © 1999–2021 The Apache Software Foundation. All rights reserved.