Interface Summary |
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. |
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. |
SingleThreadModel |
Defines a "single" thread model for servlet execution. |