Modifier and Type | Class and Description |
---|---|
class |
AmberContextFilter
Context for the amber filter.
|
Modifier and Type | Class and Description |
---|---|
class |
AnonymousExpiresFilter
Caches the servlet output for anonymous users.
|
class |
CsrfFilter
Support for CSRF prevention.
|
class |
ExpiresFilter
Caches the servlet output.
|
class |
GzipFilter
Compresses the response output if the browser accepts compression.
|
class |
HeaderFilter
Adds custom headers to a response
|
class |
MD5Filter
Calculates a HTTP Content-MD5 footer following RFC 1864
|
class |
PasswordFilter
Save a password that the user submits as the session attribute
'java.naming.security.credentials'.
|
class |
ThrottleFilter
Throttles the filter to only a limited number of requests.
|
class |
TransactionFilter
Wraps the request in a transaction.
|
class |
XsltFilter
Sends the results of the servlet through XSLT.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractRegexpDispatchRule.add(Filter filter) |
void |
AbstractRewriteFilter.add(Filter filter) |
Constructor and Description |
---|
RewriteFilterAdapter(Filter filter) |
Modifier and Type | Method and Description |
---|---|
Filter |
FilterManager.createFilter(java.lang.String filterName)
Instantiates a filter given its configuration.
|
Filter |
FilterConfigImpl.getFilter() |
Filter |
FilterChainFilterBuilder.getFilter()
Returns the filter.
|
Modifier and Type | Method and Description |
---|---|
void |
FilterConfigImpl.setFilter(Filter filter) |
void |
FilterChainFilterBuilder.setFilter(Filter filter)
Sets the filter.
|
Constructor and Description |
---|
FilterChainFilterBuilder(Filter filter)
Adds a filter to the chain.
|
FilterFilterChain(FilterChain next,
Filter filter)
Creates a new FilterChainFilter.
|
Modifier and Type | Class and Description |
---|---|
class |
ErrorFilter |
Modifier and Type | Class and Description |
---|---|
class |
ErrorPageFilter
Represents the final servlet in a filter chain.
|
Modifier and Type | Method and Description |
---|---|
<T extends Filter> |
ServletContextImpl.createFilter(java.lang.Class<T> c) |
<T extends Filter> |
WebApp.createFilter(java.lang.Class<T> filterClass) |
Modifier and Type | Method and Description |
---|---|
FilterRegistration.Dynamic |
ServletContextImpl.addFilter(java.lang.String filterName,
Filter filter) |
FilterRegistration.Dynamic |
WebApp.addFilter(java.lang.String filterName,
Filter filter) |
Modifier and Type | Method and Description |
---|---|
FilterRegistration.Dynamic |
ServletContextImpl.addFilter(java.lang.String filterName,
java.lang.Class<? extends Filter> filterClass) |
FilterRegistration.Dynamic |
WebApp.addFilter(java.lang.String filterName,
java.lang.Class<? extends Filter> filterClass) |
Modifier and Type | Interface and Description |
---|---|
interface |
CometFilter
Servlet to handle comet requests.
|
Modifier and Type | Class and Description |
---|---|
class |
SSIFilter
Filters the result as SSI.
|
Modifier and Type | Class and Description |
---|---|
class |
ProfilerFilter
Creates a
ProfilerPoint for each invocation of ProfilerFilter.doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain) . |
Modifier and Type | Method and Description |
---|---|
<T extends Filter> |
ServletContext.createFilter(java.lang.Class<T> c)
Create a filter using class
|
Modifier and Type | Method and Description |
---|---|
FilterRegistration.Dynamic |
ServletContext.addFilter(java.lang.String filterName,
Filter filter)
Adds a dynamic filter registration using filter
|
Modifier and Type | Method and Description |
---|---|
FilterRegistration.Dynamic |
ServletContext.addFilter(java.lang.String filterName,
java.lang.Class<? extends Filter> filterClass)
Adds a filter using filterClass
|