Interface Filter

All Known Implementing Classes:
RedefinableResourceFilter

public interface Filter
This interface defines a Filter that cans be added to the ExtensibleFilter Created by The eXo Platform SAS Author : Nicolas Filotto nicolas.filotto@exoplatform.com 25 sept. 2009
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    doFilter(jakarta.servlet.ServletRequest request, jakarta.servlet.ServletResponse response, jakarta.servlet.FilterChain chain)
    The doFilter method of the Filter is called by the ExtensibleFilter each time a request/response pair is passed through the chain due to a client request for a resource at the end of the chain.
  • Method Details

    • doFilter

      void doFilter(jakarta.servlet.ServletRequest request, jakarta.servlet.ServletResponse response, jakarta.servlet.FilterChain chain) throws IOException, jakarta.servlet.ServletException
      The doFilter method of the Filter is called by the ExtensibleFilter each time a request/response pair is passed through the chain due to a client request for a resource at the end of the chain.
      Throws:
      IOException
      jakarta.servlet.ServletException