Package mireka.filter

Interface Filter

  • All Superinterfaces:
    FilterBase
    All Known Implementing Classes:
    AbstractFilter, DataRecipientFilterAdapter

    public interface Filter
    extends FilterBase
    Implementing classes are active parts of a filter chain. Their methods explicitly call the corresponding method of the next filter. In this way they are able to get information about the results of methods of the following filters. This design is similar to Servlet Filters.
    See Also:
    ServletFilter in the Servlet API
    • Method Detail

      • setChain

        void setChain​(FilterChain chain)
        an implementation must store the supplied view to the next filter in the chain. All methods of the implementing class which has a corresponding method in FilterChain must call the latter method.