Package org.apache.catalina.core
Class ApplicationFilterFactory
java.lang.Object
org.apache.catalina.core.ApplicationFilterFactory
Factory for the creation and caching of Filters and creation of Filter Chains.
- Author:
- Greg Murray, Remy Maucherat
-
Method Summary
Modifier and TypeMethodDescriptionstatic ApplicationFilterChain
createFilterChain
(ServletRequest request, Wrapper wrapper, Servlet servlet) Construct a FilterChain implementation that will wrap the execution of the specified servlet instance.
-
Method Details
-
createFilterChain
public static ApplicationFilterChain createFilterChain(ServletRequest request, Wrapper wrapper, Servlet servlet) Construct a FilterChain implementation that will wrap the execution of the specified servlet instance.- Parameters:
request
- The servlet request we are processingwrapper
- The wrapper managing the servlet instanceservlet
- The servlet instance to be wrapped- Returns:
- The configured FilterChain instance or null if none is to be executed.
-