Construct an empty client-side cookie. You add these to an output request using HttpClient.addCookie(), or the equivalent.
Construct a cookie with the provided attributes. You add these to an output request using HttpClient.addCookie(), or the equivalent.
Reset this cookie
Output the cookie as a text stream, via the provided consumer
Set the comment associated with this cookie
Set the domain of this cookie
Set the maximum duration of this cookie
Set the name of this cookie
Set the path of this cookie
Indicate whether this cookie should be considered secure or not
Set the value of this cookie
Set the version of this cookie
Defines the Cookie class, and the means for reading & writing them. Cookie implementation conforms with RFC 2109, but supports parsing of server-side cookies only. Client-side cookies are supported in terms of output, but response parsing is not yet implemented ...
See over <A HREF="http://www.faqs.org/rfcs/rfc2109.html">here</A> for the RFC document.