Cookie[] |
HttpBase.cookies() |
Parses cookie information from the header.
|
Cookie[] |
HttpResponse.cookies() |
Returns list of valid cookies sent from server.
|
Cookie |
Cookie.setComment(java.lang.String purpose) |
Specifies a comment that describes a cookie's purpose.
|
Cookie |
Cookie.setDomain(java.lang.String pattern) |
Specifies the domain within which this cookie should be presented.
|
Cookie |
Cookie.setExpires(java.lang.String expires) |
|
Cookie |
Cookie.setHttpOnly(boolean httpOnly) |
|
Cookie |
Cookie.setMaxAge(int expiry) |
Sets the maximum age of the cookie in seconds.
|
Cookie |
Cookie.setPath(java.lang.String uri) |
Specifies a path for the cookie
to which the client should return the cookie.
|
Cookie |
Cookie.setSecure(boolean flag) |
Indicates to the session whether the cookie should only be sent
using a secure protocol, such as HTTPS or SSL.
|
Cookie |
Cookie.setValue(java.lang.String newValue) |
Assigns a new value to a cookie after the cookie is created.
|
Cookie |
Cookie.setVersion(int version) |
Sets the version of the cookie protocol this cookie complies
with.
|