Frames | No Frames |
Classes implementing javax.servlet.ServletRequest | |
class |
Provides a convenient implementation of the HttpServletRequest interface that
can be subclassed by developers wishing to adapt the request to a Servlet. |
Methods with parameter type javax.servlet.ServletRequest | |
void |
Dispatches client requests to the protected
service method. |
Methods with parameter type javax.servlet.ServletRequest | |
PageContext | JspFactory.getPageContext(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int buffer, boolean autoflush)
obtains an instance of an implementation dependent
javax.servlet.jsp.PageContext abstract class for the calling Servlet
and currently pending request and response. |
void | PageContext.initialize(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush)
The initialize method is called to initialize an uninitialized PageContext
so that it may be used by a JSP Implementation class to service an
incoming request and response within it's _jspService() method. |
Methods with return type javax.servlet.ServletRequest | |
ServletRequest | The current value of the request object (a ServletRequest). |
Classes implementing javax.servlet.ServletRequest | |
class |
Provides a convenient implementation of the ServletRequest interface that
can be subclassed by developers wishing to adapt the request to a Servlet. |
Constructors with parameter type javax.servlet.ServletRequest | |
Creates a ServletRequest adaptor wrapping the given request object. |
Methods with parameter type javax.servlet.ServletRequest | |
void | Causes the next filter in the chain to be invoked, or if the calling filter is the last filter
in the chain, causes the resource at the end of the chain to be invoked. |
void | The doFilter method of the Filter is called by the container
each time a request/response pair is passed through the chain due
to a client request for a resource at the end of the chain. |
void | Forwards a request from
a servlet to another resource (servlet, JSP file, or
HTML file) on the server. |
void |
Includes the content of a resource (servlet, JSP page,
HTML file) in the response. |
void | Called by the servlet container to allow the servlet to respond to
a request. |
void | Called by the servlet container to allow the servlet to respond to
a request. |
void | Sets the request object being wrapped. |
Methods with return type javax.servlet.ServletRequest | |
ServletRequest | Return the wrapped request object. |