|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DispatcherType | |
|---|---|
| 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.eclipse.jetty.server | |
| org.eclipse.jetty.servlet | |
| Uses of DispatcherType in javax.servlet |
|---|
| Methods in javax.servlet that return DispatcherType | |
|---|---|
DispatcherType |
ServletRequestWrapper.getDispatcherType()
Gets the dispatcher type of the wrapped request. |
DispatcherType |
ServletRequest.getDispatcherType()
Gets the dispatcher type of this request. |
static DispatcherType |
DispatcherType.valueOf(java.lang.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. |
| Method parameters in javax.servlet with type arguments of type DispatcherType | |
|---|---|
void |
FilterRegistration.addMappingForServletNames(java.util.EnumSet<DispatcherType> dispatcherTypes,
boolean isMatchAfter,
java.lang.String... servletNames)
Adds a filter mapping with the given servlet names and dispatcher types for the Filter represented by this FilterRegistration. |
void |
FilterRegistration.addMappingForUrlPatterns(java.util.EnumSet<DispatcherType> dispatcherTypes,
boolean isMatchAfter,
java.lang.String... urlPatterns)
Adds a filter mapping with the given url patterns and dispatcher types for the Filter represented by this FilterRegistration. |
| Uses of DispatcherType in org.eclipse.jetty.server |
|---|
| Methods in org.eclipse.jetty.server that return DispatcherType | |
|---|---|
DispatcherType |
Request.getDispatcherType()
|
| Methods in org.eclipse.jetty.server with parameters of type DispatcherType | |
|---|---|
protected void |
Dispatcher.forward(ServletRequest request,
ServletResponse response,
DispatcherType dispatch)
|
void |
Request.setDispatcherType(DispatcherType type)
|
| Uses of DispatcherType in org.eclipse.jetty.servlet |
|---|
| Methods in org.eclipse.jetty.servlet that return DispatcherType | |
|---|---|
static DispatcherType |
FilterMapping.dispatch(java.lang.String type)
Dispatch type from name |
| Methods in org.eclipse.jetty.servlet with parameters of type DispatcherType | |
|---|---|
static int |
FilterMapping.dispatch(DispatcherType type)
Dispatch type from name |
| Method parameters in org.eclipse.jetty.servlet with type arguments of type DispatcherType | |
|---|---|
FilterHolder |
ServletContextHandler.addFilter(java.lang.Class<? extends Filter> filterClass,
java.lang.String pathSpec,
java.util.EnumSet<DispatcherType> dispatches)
convenience method to add a filter |
void |
ServletContextHandler.addFilter(FilterHolder holder,
java.lang.String pathSpec,
java.util.EnumSet<DispatcherType> dispatches)
conveniance method to add a filter |
FilterHolder |
ServletHandler.addFilter(java.lang.String className,
java.lang.String pathSpec,
java.util.EnumSet<DispatcherType> dispatches)
Deprecated. use #addFilterWithMapping(Class, String, EnumSet instead |
FilterHolder |
ServletContextHandler.addFilter(java.lang.String filterClass,
java.lang.String pathSpec,
java.util.EnumSet<DispatcherType> dispatches)
convenience method to add a filter |
FilterHolder |
ServletHandler.addFilterWithMapping(java.lang.Class<? extends Filter> filter,
java.lang.String pathSpec,
java.util.EnumSet<DispatcherType> dispatches)
Convenience method to add a filter. |
void |
ServletHandler.addFilterWithMapping(FilterHolder holder,
java.lang.String pathSpec,
java.util.EnumSet<DispatcherType> dispatches)
Convenience method to add a filter. |
FilterHolder |
ServletHandler.addFilterWithMapping(java.lang.String className,
java.lang.String pathSpec,
java.util.EnumSet<DispatcherType> dispatches)
Convenience method to add a filter. |
void |
FilterHolder.Registration.addMappingForServletNames(java.util.EnumSet<DispatcherType> dispatcherTypes,
boolean isMatchAfter,
java.lang.String... servletNames)
|
void |
FilterHolder.Registration.addMappingForUrlPatterns(java.util.EnumSet<DispatcherType> dispatcherTypes,
boolean isMatchAfter,
java.lang.String... urlPatterns)
|
void |
FilterMapping.setDispatcherTypes(java.util.EnumSet<DispatcherType> dispatcherTypes)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||