Class PassThroughFilterChain

  • All Implemented Interfaces:
    FilterChain

    public class PassThroughFilterChain
    extends Object
    implements FilterChain
    Implementation of the FilterConfig interface which simply passes the call through to a given Filter/FilterChain combination (indicating the next Filter in the chain along with the FilterChain that it is supposed to work on) or to a given Servlet (indicating the end of the chain).
    Since:
    2.0.3
    Author:
    Juergen Hoeller
    See Also:
    Filter, Servlet, MockFilterChain
    • Constructor Detail

      • PassThroughFilterChain

        public PassThroughFilterChain​(Filter filter,
                                      FilterChain nextFilterChain)
        Create a new PassThroughFilterChain that delegates to the given Filter, calling it with the given FilterChain.
        Parameters:
        filter - the Filter to delegate to
        nextFilterChain - the FilterChain to use for that next Filter
      • PassThroughFilterChain

        public PassThroughFilterChain​(Servlet servlet)
        Create a new PassThroughFilterChain that delegates to the given Servlet.
        Parameters:
        servlet - the Servlet to delegate to