Interface | Description |
---|---|
HttpServletRequest |
Contains all the client's request information.
|
HttpServletResponse |
Object for HttpServlets to return information to the client.
|
HttpSession |
A HttpSession holds session-dependant data on the server side.
|
HttpSessionActivationListener |
Objects that are bound to a session as an attribute and implementing
this interface will be notified whenever the session to which they
are bound is activated or passivated.
|
HttpSessionAttributeListener |
Implementers of this interface can receive notifications when
the attributes of the sessions in a web application change
either through addittion, deletion, or replacement
|
HttpSessionBindingListener |
Objects that implement this interface will be called when they are bound or
unbound into a
HttpSession with a
HttpSessionBindingEvent . |
HttpSessionContext | Deprecated
This class has been deprecated for security reasons.
|
HttpSessionListener |
listener class for simple session events.
|
Part |
A MIME body part received as part of a multipart/form-data request.
|
Class | Description |
---|---|
Cookie |
A cookie is basically a {String,String} name/value pair that the server tells
the client to remember and to send back to him attached to every future
request.
Using cookies a server can maintain a state in between client requests. |
HttpServlet |
The mother-of-all-HttpServlets.
|
HttpServletRequestWrapper |
Serves a convenience class for developers to adapt to HttpServletRequests
by default, passes all method calls which are part of the
HttpServletRequest
interface through to the wrapped object |
HttpServletResponseWrapper |
Provided as a convenience to a developer that wishes to write an adapter
to an HttpServletResponse Object.
|
HttpSessionBindingEvent |
Send to an Object that implements
HttpSessionBindingListener
when bound into a session or unbound from a session. |
HttpSessionEvent |
A session lifecycle event.
|
HttpUtils | Deprecated
usefull methods have been moved to the request interfaces
|