Class DefaultRedirectStrategyAdaptor

  • All Implemented Interfaces:
    RedirectStrategy

    @Contract(threading=IMMUTABLE)
    @Deprecated
    class DefaultRedirectStrategyAdaptor
    extends java.lang.Object
    implements RedirectStrategy
    Deprecated.
    (4.1) do not use
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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 interface RedirectStrategy
        Parameters:
        request - the executed request
        response - the response received from the target server
        context - 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 interface RedirectStrategy
        Parameters:
        request - the executed request
        response - the response received from the target server
        context - the context for the request execution
        Returns:
        redirected request
        Throws:
        org.apache.http.ProtocolException