Package javax.servlet.http


package javax.servlet.http
  • Class
    Description
    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.
    The mother-of-all-HttpServlets.
    Contains all the client's request information.
    Object for HttpServlets to return information to the client.
    A HttpSession holds session-dependant data on the server side.
    Send to an Object that implements HttpSessionBindingListener when bound into a session or unbound from a session.
    Objects that implement this interface will be called when they are bound or unbound into a HttpSession with a HttpSessionBindingEvent.
    Deprecated.
    This class has been deprecated for security reasons.
    We don't want serlvets messing around in other sessions.
    However convenient that might be.
    A set of utility methods for http server writers.