Uses of Interface
javax.servlet.ServletRequest

Packages that use ServletRequest
javax.servlet   
javax.servlet.http   
 

Uses of ServletRequest in javax.servlet
 

Methods in javax.servlet with parameters of type ServletRequest
 void RequestDispatcher.forward(ServletRequest request, ServletResponse response)
          Forwards a request from a servlet to another resource (servlet, JSP file, or HTML file) on the server.
 void RequestDispatcher.include(ServletRequest request, ServletResponse response)
          Includes the content of a resource (servlet, JSP page, HTML file) in the response.
abstract  void GenericServlet.service(ServletRequest req, ServletResponse res)
          Called by the servlet container to allow the servlet to respond to a request.
 void Servlet.service(ServletRequest req, ServletResponse res)
          Called by the servlet container to allow the servlet to respond to a request.
 

Uses of ServletRequest in javax.servlet.http
 

Subinterfaces of ServletRequest in javax.servlet.http
 interface HttpServletRequest
          Extends the ServletRequest interface to provide request information for HTTP servlets.
 

Methods in javax.servlet.http with parameters of type ServletRequest
 void HttpServlet.service(ServletRequest req, ServletResponse res)
          Dispatches client requests to the protected service method.