Interface Summary |
Config |
Configuration for a servlet or filter. |
Filter |
Filters the request or response to a servlet. |
FilterChain |
Represents the next filter in a filter chain. |
FilterConfig |
Configuration for a filter. |
RequestDispatcher |
The RequestDispatcher gives servlets the capabilities of SSI includes. |
Servlet |
A servlet is any Java class with a null-arg constructor that
implements the Servlet API. |
ServletConfig |
ServletConfig encapsulates servlet configuration and gives access to
the application (servlet context) object. |
ServletContext |
ServletContexts encapsulate applications. |
ServletContextAttributesListener |
Interface for a listener receiving events when any of the ServletContext
attributes change. |
ServletContextListener |
Interface for a listener receiving events when the ServletContext
changes. |
ServletRequest |
ServletRequest encapsulates client request data. |
ServletResponse |
ServletReponse control the output to the client. |
SingleThreadModel |
Servlets implementing the SingleThreadModel have only a single thread
executing at any time. |