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)
          Used for forwarding a request from this servlet to another resource on the server.
 void RequestDispatcher.include(ServletRequest request, ServletResponse response)
          Used for including the content generated by another server resource in the body of a response.
 void Servlet.service(ServletRequest req, ServletResponse res)
          Called by the servlet engine to allow the servlet to respond to a request.
abstract  void GenericServlet.service(ServletRequest req, ServletResponse res)
          Carries out a single request from the client.
 

Uses of ServletRequest in javax.servlet.http
 

Subinterfaces of ServletRequest in javax.servlet.http
 interface HttpServletRequest
          An HTTP servlet request.
 

Methods in javax.servlet.http with parameters of type ServletRequest
 void HttpServlet.service(ServletRequest req, ServletResponse res)
          Implements the high level Servlet.service method by delegating to the HTTP-specific service method.