public abstract class FilterChainManager<ServletContextType extends javax.servlet.ServletContext> extends Object
HttpServletRequest and HttpServletResponse objects.
For example, the Spring implementation creates the ServletContext when the application is initialized the first time
and creates a FilterChainManager to execute its filters for each request.| Modifier and Type | Class and Description |
|---|---|
protected static class |
FilterChainManager.TargetCacheKey
Object used as a key for the filter chain cache.
|
| Modifier and Type | Field and Description |
|---|---|
protected ServletContextType |
servletContext |
| Modifier and Type | Method and Description |
|---|---|
protected abstract Map<String,FilterHolder> |
getFilterHolders()
This method is used by the
getFilterChain method to extract a Map of filter holders from the current
context. |
protected ServletContextType extends javax.servlet.ServletContext servletContext
protected abstract Map<String,FilterHolder> getFilterHolders()
getFilterChain method to extract a Map of filter holders from the current
context. This method is implemented in the AwsFilterChainManager class.Copyright © 2022. All rights reserved.