Package | Description |
---|---|
com.sun.webkit.network |
Modifier and Type | Field and Description |
---|---|
private ExtendedTime |
Cookie.creationTime |
Modifier and Type | Method and Description |
---|---|
(package private) static ExtendedTime |
ExtendedTime.currentTime()
Returns the current extended time with the base time initialized
to System.currentTimeMillis() and the subtime initialized to zero.
|
(package private) ExtendedTime |
Cookie.getCreationTime()
Returns the creation time of this cookie.
|
(package private) ExtendedTime |
ExtendedTime.incrementSubtime()
Increments the subtime and returns the result as a new extended time.
|
Modifier and Type | Method and Description |
---|---|
int |
ExtendedTime.compareTo(ExtendedTime otherExtendedTime) |
(package private) static Cookie |
Cookie.parse(java.lang.String setCookieString,
ExtendedTime currentTime)
Parses a
Set-Cookie header string into a Cookie
object. |
(package private) void |
Cookie.setCreationTime(ExtendedTime creationTime)
Sets the creation time of this cookie.
|
Constructor and Description |
---|
Cookie(java.lang.String name,
java.lang.String value,
long expiryTime,
java.lang.String domain,
java.lang.String path,
ExtendedTime creationTime,
long lastAccessTime,
boolean persistent,
boolean hostOnly,
boolean secureOnly,
boolean httpOnly)
Creates a new
Cookie . |