Interface Summary |
Servlet |
This is the interface for all servlets.
|
ServletConfig |
Whenever a server wants to pass initialization data to a servlet, it
creates a class which implements this interface. |
ServletContext |
A class created by the server to give servlets access to certain
environment related objects and methods. |
ServletRequest |
Whenever the server receives a request it creates a ServletRequest object,
puts all the request information in it and passes this along with
a ServletResponse object to the approriate servlet. |
ServletResponse |
A servlet can use this class to pass information to the client. |
SingleThreadModel |
SingleThreadModel.java -- Interface indicating a "single" thread model |