| java.lang.Object org.w3c.www.http.BasicValue org.w3c.www.http.HttpSetCookieList
original | boolean original(Code) | | |
HttpSetCookieList | HttpSetCookieList()(Code) | | |
addBytes | public void addBytes(byte buf, int off, int len)(Code) | | HeaderValue implementation - Add these bytes to the header raw value.
Parameters: buf - The byte buffer containing some part of the header value. Parameters: off - The offset of the header value in above buffer. Parameters: len - The length of the header value in above buffer. |
addSetCookie | public HttpSetCookie addSetCookie(String name, String value)(Code) | | Add a specific cookie to the SetCookie header value.
This method creates a new, empty SetCookie holder, attaches it to the
SetCookie header, and returns it.
Parameters: name - The cookie's name. Parameters: value - The cookie's value. |
checkByteValues | final protected void checkByteValues()(Code) | | |
copyLength | protected int copyLength()(Code) | | |
getSetCookie | public HttpSetCookie getSetCookie(String name)(Code) | | Get the cookie infos associated with the given cookie name, if any.
Parameters: name - The cookie's name. A HttpSetCookie instance, if found, or null otherwise. |
isOriginal | protected boolean isOriginal()(Code) | | |
length | protected int length()(Code) | | |
parse | protected void parse() throws HttpParserException(Code) | | parse set cookie header according to the specification:
http://www.netscape.com/newsref/std/cookie_spec.html
exception: HttpParserException - if parsing failed. |
removeSetCookie | public boolean removeSetCookie(String name)(Code) | | Remove a predefined cookie from this SetCookie header.
Parameters: name - The name of the cookie to remove. A boolean true if removed, false otherwise. |
updateByteValue | protected void updateByteValue()(Code) | | |
|
|