| Package | Description |
|---|---|
| jakarta.servlet | |
| jakarta.servlet.http | |
| org.apache.jasper.servlet |
| Modifier and Type | Class and Description |
|---|---|
class |
GenericFilter
Provides a base class that implements the Filter and FilterConfig interfaces
to reduce boilerplate when writing new filters.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends Filter> |
ServletContext.createFilter(java.lang.Class<T> c)
TODO SERVLET3 - Add comments
|
| Modifier and Type | Method and Description |
|---|---|
FilterRegistration.Dynamic |
ServletContext.addFilter(java.lang.String filterName,
Filter filter)
Add filter to context.
|
| Modifier and Type | Method and Description |
|---|---|
FilterRegistration.Dynamic |
ServletContext.addFilter(java.lang.String filterName,
java.lang.Class<? extends Filter> filterClass)
Add filter to context.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpFilter
Provides a base class that implements the Filter interface and ensures
that the Request and Response are of type HttpServletRequest and
HttpServletResponse respectively.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends Filter> |
JspCServletContext.createFilter(java.lang.Class<T> c) |
| Modifier and Type | Method and Description |
|---|---|
FilterRegistration.Dynamic |
JspCServletContext.addFilter(java.lang.String filterName,
Filter filter) |
| Modifier and Type | Method and Description |
|---|---|
FilterRegistration.Dynamic |
JspCServletContext.addFilter(java.lang.String filterName,
java.lang.Class<? extends Filter> filterClass) |
Copyright © 2014–2021. All rights reserved.