Package | Description |
---|---|
io.undertow.servlet.api | |
io.undertow.servlet.handlers | |
io.undertow.servlet.predicate | |
io.undertow.servlet.spec | |
javax.servlet |
The javax.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.
|
org.jboss.resteasy.util |
Modifier and Type | Method and Description |
---|---|
DispatcherType |
FilterMappingInfo.getDispatcher() |
Modifier and Type | Method and Description |
---|---|
DeploymentInfo |
DeploymentInfo.addFilterServletNameMapping(String filterName,
String mapping,
DispatcherType dispatcher) |
DeploymentInfo |
DeploymentInfo.addFilterUrlMapping(String filterName,
String mapping,
DispatcherType dispatcher) |
void |
ServletDispatcher.dispatchToPath(HttpServerExchange exchange,
ServletPathMatch pathMatch,
DispatcherType dispatcherType)
Dispatches a servlet request to the specified servlet path, changing the current path
|
void |
ServletDispatcher.dispatchToServlet(HttpServerExchange exchange,
ServletChain servletChain,
DispatcherType dispatcherType)
Dispatches a servlet request to the specified servlet, without changing the current path
|
DeploymentInfo |
DeploymentInfo.insertFilterServletNameMapping(int pos,
String filterName,
String mapping,
DispatcherType dispatcher) |
DeploymentInfo |
DeploymentInfo.insertFilterUrlMapping(int pos,
String filterName,
String mapping,
DispatcherType dispatcher) |
Constructor and Description |
---|
FilterMappingInfo(String filterName,
FilterMappingInfo.MappingType mappingType,
String mapping,
DispatcherType dispatcher) |
Modifier and Type | Method and Description |
---|---|
DispatcherType |
ServletRequestContext.getDispatcherType() |
Modifier and Type | Method and Description |
---|---|
void |
ServletInitialHandler.dispatchToPath(HttpServerExchange exchange,
ServletPathMatch pathInfo,
DispatcherType dispatcherType) |
void |
ServletInitialHandler.dispatchToServlet(HttpServerExchange exchange,
ServletChain servletchain,
DispatcherType dispatcherType) |
void |
ServletRequestContext.setDispatcherType(DispatcherType dispatcherType) |
Constructor and Description |
---|
FilterHandler(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) |
Constructor and Description |
---|
DispatcherTypePredicate(DispatcherType dispatcherType) |
Modifier and Type | Method and Description |
---|---|
DispatcherType |
HttpServletRequestImpl.getDispatcherType() |
Modifier and Type | Method and Description |
---|---|
void |
FilterRegistrationImpl.addMappingForServletNames(EnumSet<DispatcherType> dispatcherTypes,
boolean isMatchAfter,
String... servletNames) |
void |
FilterRegistrationImpl.addMappingForUrlPatterns(EnumSet<DispatcherType> dispatcherTypes,
boolean isMatchAfter,
String... urlPatterns) |
Modifier and Type | Method and Description |
---|---|
DispatcherType |
ServletRequest.getDispatcherType()
Gets the dispatcher type of this request.
|
DispatcherType |
ServletRequestWrapper.getDispatcherType()
Gets the dispatcher type of the wrapped request.
|
static DispatcherType |
DispatcherType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispatcherType[] |
DispatcherType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
FilterRegistration.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.
|
void |
FilterRegistration.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.
|
Modifier and Type | Method and Description |
---|---|
DispatcherType |
HttpServletRequestDelegate.getDispatcherType() |
Copyright © 2021 JBoss by Red Hat. All rights reserved.