Uses of Interface
jakarta.servlet.FilterRegistration
-
Packages that use FilterRegistration Package Description jakarta.servlet The jakarta.servlet package contains a number of classes and interfaces that describe and define the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container. -
-
Uses of FilterRegistration in jakarta.servlet
Subinterfaces of FilterRegistration in jakarta.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 jakarta.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 jakarta.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.
-