Uses of Interface
javax.servlet.FilterRegistration
-
Packages that use FilterRegistration Package Description javax.servlet -
-
Uses of FilterRegistration in javax.servlet
Subinterfaces of FilterRegistration in javax.servlet Modifier and Type Interface Description static interface
FilterRegistration.Dynamic
Interface through which aFilter
registered via one of the addFilter methods onServletContext
may be further configured.Methods in javax.servlet that return FilterRegistration Modifier and Type Method Description FilterRegistration
ServletContext. getFilterRegistration(String filterName)
Gets the FilterRegistration corresponding to the filter with the given filterName.Methods in javax.servlet that return types with arguments of type FilterRegistration Modifier and Type Method Description Map<String,? extends FilterRegistration>
ServletContext. getFilterRegistrations()
Gets a (possibly empty) Map of the FilterRegistration objects (keyed by filter name) corresponding to all filters registered with this ServletContext.
-