Uses of Package
javax.servlet

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

Classes in javax.servlet used by javax.servlet
RequestDispatcher
          Defines a request dispatcher object that receives request from the client and sends them to any resource (such as a servlet, CGI script, HTML file, or JSP file) available on the server.
Servlet
          A Servlet is a small program that runs inside a web server.
ServletConfig
          Defines an object that a servlet engine generates to pass configuration information to a servlet when such servlet is initialized.
ServletContext
          A servlet engine generated object that gives servlets information about their environment.
ServletException
          This exception is thrown to indicate a servlet problem.
ServletInputStream
          An input stream for reading servlet requests, it provides an efficient readLine method.
ServletOutputStream
          An output stream for writing servlet responses.
ServletRequest
          Defines a servlet engine generated object that enables a servlet to get information about a client request.
ServletResponse
          Interface for sending MIME data from the servlet's service method to the client.
 

Classes in javax.servlet used by javax.servlet.http
GenericServlet
          The GenericServlet class implements the Servlet interface and, for convenience, the ServletConfig interface.
Servlet
          A Servlet is a small program that runs inside a web server.
ServletConfig
          Defines an object that a servlet engine generates to pass configuration information to a servlet when such servlet is initialized.
ServletException
          This exception is thrown to indicate a servlet problem.
ServletInputStream
          An input stream for reading servlet requests, it provides an efficient readLine method.
ServletRequest
          Defines a servlet engine generated object that enables a servlet to get information about a client request.
ServletResponse
          Interface for sending MIME data from the servlet's service method to the client.