| java.lang.Object com.sun.xml.ws.transport.http.client.HttpCookie
HttpCookie | public class HttpCookie (Code) | | An object which represents an HTTP cookie. Can be constructed by
parsing a string from the set-cookie: header.
Syntax: Set-Cookie: NAME=VALUE; expires=DATE;
path=PATH; domain=DOMAIN_NAME; secure
All but the first field are optional.
author: WS Development Team |
getDomain | public String getDomain()(Code) | | Returns the domain of the cookie as it was presented
|
getExpirationDate | public Date getExpirationDate()(Code) | | |
getName | public String getName()(Code) | | Returns just the name part of the cookie
|
hasExpired | boolean hasExpired()(Code) | | |
isSaveable | boolean isSaveable()(Code) | | Returns true if the cookie has an expiration date (meaning it's
persistent), and if the date nas not expired;
|
isSecure | public boolean isSecure()(Code) | | |
|
|