Uses of Interface
jakarta.servlet.Filter
-
Packages that use Filter Package Description io.undertow.servlet io.undertow.servlet.api io.undertow.servlet.spec 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.jakarta.servlet.http The jakarta.servlet.http package contains a number of classes and interfaces that describe and define the contracts between a servlet class running under the HTTP protocol and the runtime environment provided for an instance of such a class by a conforming servlet container.org.jboss.resteasy.plugins.server.servlet -
-
Uses of Filter in io.undertow.servlet
Method parameters in io.undertow.servlet with type arguments of type Filter Modifier and Type Method Description static FilterInfoServlets. filter(Class<? extends Filter> filterClass)Creates a new filter description with the given class.static FilterInfoServlets. filter(String name, Class<? extends Filter> filterClass)Creates a new filter description with the given name and classstatic FilterInfoServlets. filter(String name, Class<? extends Filter> filterClass, InstanceFactory<? extends Filter> filter)Creates a new filter description with the given name and classstatic FilterInfoServlets. filter(String name, Class<? extends Filter> filterClass, InstanceFactory<? extends Filter> filter)Creates a new filter description with the given name and classIllegalArgumentExceptionUndertowServletMessages_$bundle. filterMustImplementFilter(String name, Class<? extends Filter> filterClass)IllegalArgumentExceptionUndertowServletMessages. filterMustImplementFilter(String name, Class<? extends Filter> filterClass) -
Uses of Filter in io.undertow.servlet.api
Methods in io.undertow.servlet.api that return types with arguments of type Filter Modifier and Type Method Description Class<? extends Filter>FilterInfo. getFilterClass()InstanceFactory<? extends Filter>FilterInfo. getInstanceFactory()Methods in io.undertow.servlet.api with parameters of type Filter Modifier and Type Method Description voidLifecycleInterceptor. destroy(FilterInfo filterInfo, Filter filter, LifecycleInterceptor.LifecycleContext context)voidLifecycleInterceptor. init(FilterInfo filterInfo, Filter filter, LifecycleInterceptor.LifecycleContext context)Method parameters in io.undertow.servlet.api with type arguments of type Filter Modifier and Type Method Description voidFilterInfo. setInstanceFactory(InstanceFactory<? extends Filter> instanceFactory)Constructor parameters in io.undertow.servlet.api with type arguments of type Filter Constructor Description FilterInfo(String name, Class<? extends Filter> filterClass)FilterInfo(String name, Class<? extends Filter> filterClass, InstanceFactory<? extends Filter> instanceFactory)FilterInfo(String name, Class<? extends Filter> filterClass, InstanceFactory<? extends Filter> instanceFactory) -
Uses of Filter in io.undertow.servlet.spec
Methods in io.undertow.servlet.spec with type parameters of type Filter Modifier and Type Method Description <T extends Filter>
TServletContextImpl. createFilter(Class<T> clazz)Methods in io.undertow.servlet.spec with parameters of type Filter Modifier and Type Method Description FilterRegistration.DynamicServletContextImpl. addFilter(String filterName, Filter filter)Method parameters in io.undertow.servlet.spec with type arguments of type Filter Modifier and Type Method Description FilterRegistration.DynamicServletContextImpl. addFilter(String filterName, Class<? extends Filter> filterClass) -
Uses of Filter in jakarta.servlet
Classes in jakarta.servlet that implement Filter Modifier and Type Class Description classGenericFilterDefines a generic, protocol-independent filter.Methods in jakarta.servlet with type parameters of type Filter Modifier and Type Method Description <T extends Filter>
TServletContext. createFilter(Class<T> clazz)Instantiates the given Filter class.Methods in jakarta.servlet with parameters of type Filter Modifier and Type Method Description FilterRegistration.DynamicServletContext. addFilter(String filterName, Filter filter)Registers the given filter instance with this ServletContext under the given filterName.Method parameters in jakarta.servlet with type arguments of type Filter Modifier and Type Method Description FilterRegistration.DynamicServletContext. addFilter(String filterName, Class<? extends Filter> filterClass)Adds the filter with the given name and class type to this servlet context. -
Uses of Filter in jakarta.servlet.http
Classes in jakarta.servlet.http that implement Filter Modifier and Type Class Description classHttpFilterProvides an abstract class to be subclassed to create an HTTP filter suitable for a Web site. -
Uses of Filter in org.jboss.resteasy.plugins.server.servlet
Classes in org.jboss.resteasy.plugins.server.servlet that implement Filter Modifier and Type Class Description classFilter30DispatcherclassFilterDispatcher
-