| java.lang.Object org.w3c.www.http.BasicValue org.w3c.www.http.HttpCookieList
HttpCookieList | public HttpCookieList()(Code) | | |
addCookie | public HttpCookie addCookie(String name, String value)(Code) | | Add a cookie to this header value.
Parameters: name - The name of the cookie to add. Parameters: value - It's value. A HttpCookie instance, tha represents this cookie in the headervalue. |
deprecatedUpdateByteValue | protected void deprecatedUpdateByteValue()(Code) | | |
getCookie | public HttpCookie getCookie(String name)(Code) | | Lookup a cookie by name.
Parameters: name - The name of the cooie to lookup. A HttpCookie instance, or null if not found. |
getValue | public Object getValue()(Code) | | Get this HTTP value, parsed value.
|
parse | protected void parse() throws HttpParserException(Code) | | parse the Cookie Header according to the Netscape Specification:
http://www.netscape.com/newsref/std/cookie_spec.html
exception: HttpParserException - if parsing failed. |
removeCookie | public boolean removeCookie(String name)(Code) | | Remove a cookie from this header value.
Parameters: name - The name of the cookie to remove. A boolean, true If the cookie was found, andremoved, false otherwise. |
updateByteValue | protected void updateByteValue()(Code) | | |
|
|