Uses of Interface
jakarta.servlet.FilterRegistration
Packages that use FilterRegistration
Package
Description
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.servletModifier and TypeInterfaceDescriptionstatic interface
Interface through which aFilter
registered via one of the addFilter methods onServletContext
may be further configured.Methods in jakarta.servlet that return FilterRegistrationModifier and TypeMethodDescriptionServletContext.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 FilterRegistrationModifier and TypeMethodDescriptionMap
<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.