Class ApplicationFilterChain
java.lang.Object
org.apache.catalina.core.ApplicationFilterChain
- All Implemented Interfaces:
- FilterChain
Implementation of 
jakarta.servlet.FilterChain used to manage the execution of a set of filters for a
 particular request. When the set of defined filters has all been executed, the next call to doFilter()
 will execute the servlet's service() method itself.- Author:
- Craig R. McClanahan
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoiddoFilter(ServletRequest request, ServletResponse response) Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked.voidfindNonAsyncFilters(Set<String> result) Identifies the Filters, if any, in this FilterChain that do not support async.static ServletRequestThe last request passed to a servlet for servicing from the current thread.static ServletResponseThe last response passed to a servlet for servicing from the current thread.
- 
Field Details- 
INCREMENTpublic static final int INCREMENT- See Also:
 
 
- 
- 
Constructor Details- 
ApplicationFilterChainpublic ApplicationFilterChain()
 
- 
- 
Method Details- 
doFilterpublic void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException Description copied from interface:jakarta.servlet.FilterChainCauses the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the resource at the end of the chain to be invoked.- Specified by:
- doFilterin interface- FilterChain
- Parameters:
- request- the request to pass along the chain.
- response- the response to pass along the chain.
- Throws:
- IOException- if an I/O error occurs during the processing of the request
- ServletException- if the processing fails for any other reason
 
- 
getLastServicedRequestThe last request passed to a servlet for servicing from the current thread.- Returns:
- The last request to be serviced.
 
- 
getLastServicedResponseThe last response passed to a servlet for servicing from the current thread.- Returns:
- The last response to be serviced.
 
- 
findNonAsyncFilters
 
-