Package javax.servlet.http
The javax.servlet.http package contains a number of classes and interfaces
that describe and define the contracts between a servlet class
running under the HTTP protocol and the runtime environment provided
for an instance of such a class by a conforming servlet container.
Cookie |
Creates a cookie, a small amount of information sent by a servlet to
a Web browser, saved by the browser, and later sent back to the server. |
HttpServlet |
Provides an abstract class to be subclassed to create
an HTTP servlet suitable for a Web site. |
HttpServletRequestWrapper |
Provides a convenient implementation of the HttpServletRequest interface that
can be subclassed by developers wishing to adapt the request to a Servlet. |
HttpServletResponseWrapper |
Provides a convenient implementation of the HttpServletResponse interface that
can be subclassed by developers wishing to adapt the response from a Servlet. |
HttpSessionBindingEvent |
Events of this type are either sent to an object that implements
HttpSessionBindingListener when it is bound or
unbound from a session, or to a HttpSessionAttributeListener
that has been configured in the deployment descriptor when any attribute is
bound, unbound or replaced in a session. |
HttpSessionEvent | This is the class representing event notifications for
changes to sessions within a web application. |
HttpUtils | |
The javax.servlet.http package contains a number of classes and interfaces
that describe and define the contracts between a servlet class
running under the HTTP protocol and the runtime environment provided
for an instance of such a class by a conforming servlet container.
Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.