public final class CefCookie
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
java.util.Date |
creation
The cookie creation date.
|
java.lang.String |
domain
If domain is empty a host cookie will be created instead of a domain
cookie.
|
java.util.Date |
expires |
boolean |
hasExpires
The cookie expiration date is only valid if |has_expires| is true.
|
boolean |
httponly
If httponly is true the cookie will only be sent for HTTP requests.
|
java.util.Date |
lastAccess
The cookie last access date.
|
java.lang.String |
name
The cookie name.
|
java.lang.String |
path
If path is non-empty only URLs at or below the path will get the cookie
value.
|
boolean |
secure
If secure is true the cookie will only be sent for HTTPS requests.
|
java.lang.String |
value
The cookie value.
|
| Constructor and Description |
|---|
CefCookie(java.lang.String name,
java.lang.String value,
java.lang.String domain,
java.lang.String path,
boolean secure,
boolean httponly,
java.util.Date creation,
java.util.Date lastAccess,
boolean hasExpires,
java.util.Date expires) |
public final java.util.Date creation
public final java.lang.String domain
public final java.util.Date expires
public final boolean hasExpires
public final boolean httponly
public final java.util.Date lastAccess
public final java.lang.String name
public final java.lang.String path
public final boolean secure
public final java.lang.String value