Interface HttpFilterChain


  • @Contract(threading=STATELESS)
    public interface HttpFilterChain
    HttpFilterChain represents a single element in the server side request processing chain.
    Since:
    5.0
    • Method Detail

      • proceed

        void proceed​(ClassicHttpRequest request,
                     HttpFilterChain.ResponseTrigger responseTrigger,
                     HttpContext context)
              throws HttpException,
                     java.io.IOException
        Proceeds to the next element in the request processing chain.
        Parameters:
        request - the actual request.
        responseTrigger - the response trigger.
        context - the actual execution context.
        Throws:
        HttpException - in case of an HTTP protocol violation.
        java.io.IOException - in case of an I/O error.