Uses of Class
org.glassfish.grizzly.servlet.FilterRegistration
-
-
Uses of FilterRegistration in org.glassfish.grizzly.servlet
Fields in org.glassfish.grizzly.servlet with type parameters of type FilterRegistration Modifier and Type Field Description protected Map<String,FilterRegistration>WebappContext. filterRegistrationsprotected Map<String,FilterRegistration>WebappContext. unmodifiableFilterRegistrationsMethods in org.glassfish.grizzly.servlet that return FilterRegistration Modifier and Type Method Description FilterRegistrationWebappContext. addFilter(String filterName, jakarta.servlet.Filter filter)Registers the given filter instance with this WebappContext under the given filterName.FilterRegistrationWebappContext. addFilter(String filterName, Class<? extends jakarta.servlet.Filter> filterClass)Adds the filter with the given name and class type to this servlet context.FilterRegistrationWebappContext. addFilter(String filterName, String className)Adds the filter with the given name and class name to this servlet context.FilterRegistrationWebappContext. getFilterRegistration(String name)Gets the FilterRegistration corresponding to the filter with the given filterName.Methods in org.glassfish.grizzly.servlet that return types with arguments of type FilterRegistration Modifier and Type Method Description Map<String,? extends FilterRegistration>WebappContext. getFilterRegistrations()Gets a (possibly empty) Map of the FilterRegistration objects (keyed by filter name) corresponding to all filters registered with this WebappContext.Methods in org.glassfish.grizzly.servlet with parameters of type FilterRegistration Modifier and Type Method Description protected jakarta.servlet.FilterWebappContext. createFilterInstance(FilterRegistration registration)Instantiates the given Filter class.
-