Package | Description |
---|---|
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 | Class and Description |
---|---|
class |
RequestDispatcherImpl |
Modifier and Type | Method and Description |
---|---|
RequestDispatcher |
ServletContextImpl.getNamedDispatcher(String name) |
RequestDispatcher |
ServletContextImpl.getRequestDispatcher(String path) |
RequestDispatcher |
HttpServletRequestImpl.getRequestDispatcher(String path) |
Modifier and Type | Method and Description |
---|---|
RequestDispatcher |
ServletContext.getNamedDispatcher(String name)
Returns a
RequestDispatcher object that acts
as a wrapper for the named servlet. |
RequestDispatcher |
ServletRequestWrapper.getRequestDispatcher(String path)
The default behavior of this method is to return
getRequestDispatcher(String path) on the wrapped request object.
|
RequestDispatcher |
ServletRequest.getRequestDispatcher(String path)
Returns a
RequestDispatcher object that acts as a wrapper for
the resource located at the given path. |
RequestDispatcher |
ServletContext.getRequestDispatcher(String path)
Returns a
RequestDispatcher object that acts
as a wrapper for the resource located at the given path. |
Modifier and Type | Method and Description |
---|---|
RequestDispatcher |
HttpServletRequestDelegate.getRequestDispatcher(String s) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.