Interface FilterChain

All Known Implementing Classes:
DefaultFilterChain

public interface FilterChain
The FilterChain API.
Author:
Manfred Riem ([email protected])
  • Method Summary

    Modifier and Type Method Description
    void doFilter​(ServletRequest request, ServletResponse response)
    Process the request.
  • Method Details

    • doFilter

      void doFilter​(ServletRequest request, ServletResponse response) throws java.io.IOException, ServletException
      Process the request.
      Parameters:
      request - the request.
      response - the response.
      Throws:
      java.io.IOException - when an I/O error occurs.
      ServletException - when a servlet error occurs.