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. |
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 | |
ServletRequestAttributeEvent.ServletRequestAttributeEvent(ServletContext sc, ServletRequest request, String name, Object value) Construct a ServletRequestAttributeEvent giving the servlet context
of this web application, the ServletRequest whose attributes are
changing and the name and value of the attribute. | |
Construct a ServletRequestEvent for the given ServletContext
and 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. |
ServletRequest | Returns the ServletRequest that is changing. |