Interface NamedFilterList

  • All Superinterfaces:
    Collection<javax.servlet.Filter>, Iterable<javax.servlet.Filter>, List<javax.servlet.Filter>
    All Known Implementing Classes:
    SimpleNamedFilterList

    public interface NamedFilterList
    extends List<javax.servlet.Filter>
    A NamedFilterList is a List of Filter instances that is uniquely identified by a name. It has the ability to generate new FilterChain instances reflecting this list's filter order via the proxy method.
    Since:
    1.0
    • Method Detail

      • getName

        String getName()
        Returns the configuration-unique name assigned to this Filter list.
        Returns:
        the configuration-unique name assigned to this Filter list.
      • proxy

        javax.servlet.FilterChain proxy​(javax.servlet.FilterChain filterChain)
        Returns a new FilterChain instance that will first execute this list's Filters (in list order) and end with the execution of the given filterChain instance.
        Parameters:
        filterChain - the FilterChain instance to execute after this list's Filters have executed.
        Returns:
        a new FilterChain instance that will first execute this list's Filters (in list order) and end with the execution of the given filterChain instance.