Uses of Enum Class
jakarta.servlet.DispatcherType
Packages that use DispatcherType
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 DispatcherType in io.undertow.servlet.api
Methods in io.undertow.servlet.api that return DispatcherTypeMethods in io.undertow.servlet.api with parameters of type DispatcherTypeModifier and TypeMethodDescriptionDeploymentInfo.addFilterServletNameMapping(String filterName, String mapping, DispatcherType dispatcher) DeploymentInfo.addFilterUrlMapping(String filterName, String mapping, DispatcherType dispatcher) voidServletDispatcher.dispatchToPath(HttpServerExchange exchange, ServletPathMatch pathMatch, DispatcherType dispatcherType) Dispatches a servlet request to the specified servlet path, changing the current pathvoidServletDispatcher.dispatchToServlet(HttpServerExchange exchange, ServletChain servletChain, DispatcherType dispatcherType) Dispatches a servlet request to the specified servlet, without changing the current pathDeploymentInfo.insertFilterServletNameMapping(int pos, String filterName, String mapping, DispatcherType dispatcher) DeploymentInfo.insertFilterUrlMapping(int pos, String filterName, String mapping, DispatcherType dispatcher) Constructors in io.undertow.servlet.api with parameters of type DispatcherTypeModifierConstructorDescriptionFilterMappingInfo(String filterName, FilterMappingInfo.MappingType mappingType, String mapping, DispatcherType dispatcher) -
Uses of DispatcherType in io.undertow.servlet.handlers
Methods in io.undertow.servlet.handlers that return DispatcherTypeMethods in io.undertow.servlet.handlers with parameters of type DispatcherTypeModifier and TypeMethodDescriptionvoidServletInitialHandler.dispatchToPath(HttpServerExchange exchange, ServletPathMatch pathInfo, DispatcherType dispatcherType) voidServletInitialHandler.dispatchToServlet(HttpServerExchange exchange, ServletChain servletchain, DispatcherType dispatcherType) voidServletRequestContext.setDispatcherType(DispatcherType dispatcherType) Constructor parameters in io.undertow.servlet.handlers with type arguments of type DispatcherTypeModifierConstructorDescriptionFilterHandler(Map<DispatcherType, List<ManagedFilter>> filters, boolean allowNonStandardWrappers, HttpHandler next) ServletChain(HttpHandler handler, ManagedServlet managedServlet, String servletPath, boolean defaultServletMapping, MappingMatch mappingMatch, String pattern, Map<DispatcherType, List<ManagedFilter>> filters) -
Uses of DispatcherType in io.undertow.servlet.predicate
Constructors in io.undertow.servlet.predicate with parameters of type DispatcherType -
Uses of DispatcherType in io.undertow.servlet.spec
Methods in io.undertow.servlet.spec that return DispatcherTypeMethod parameters in io.undertow.servlet.spec with type arguments of type DispatcherTypeModifier and TypeMethodDescriptionvoidFilterRegistrationImpl.addMappingForServletNames(EnumSet<DispatcherType> dispatcherTypes, boolean isMatchAfter, String... servletNames) voidFilterRegistrationImpl.addMappingForUrlPatterns(EnumSet<DispatcherType> dispatcherTypes, boolean isMatchAfter, String... urlPatterns) -
Uses of DispatcherType in jakarta.servlet
Methods in jakarta.servlet that return DispatcherTypeModifier and TypeMethodDescriptionServletRequest.getDispatcherType()Gets the dispatcher type of this request.ServletRequestWrapper.getDispatcherType()Gets the dispatcher type of the wrapped request.static DispatcherTypeReturns the enum constant of this class with the specified name.static DispatcherType[]DispatcherType.values()Returns an array containing the constants of this enum class, in the order they are declared.Method parameters in jakarta.servlet with type arguments of type DispatcherTypeModifier and TypeMethodDescriptionvoidFilterRegistration.addMappingForServletNames(EnumSet<DispatcherType> dispatcherTypes, boolean isMatchAfter, String... servletNames) Adds a filter mapping with the given servlet names and dispatcher types for the Filter represented by this FilterRegistration.voidFilterRegistration.addMappingForUrlPatterns(EnumSet<DispatcherType> dispatcherTypes, boolean isMatchAfter, String... urlPatterns) Adds a filter mapping with the given url patterns and dispatcher types for the Filter represented by this FilterRegistration.