public final class CefCookie
extends java.lang.Object
限定符和类型 | 字段和说明 |
---|---|
java.util.Date |
creation
The cookie creation date.
(Cookie的创建日期。)
|
java.lang.String |
domain
If domain is empty a host cookie will be created instead of a domain cookie.
(如果domain为空,将创建一个主机cookie,而不是域cookie。)
|
java.util.Date |
expires |
boolean |
hasExpires
The cookie expiration date is only valid if |has_expires| is true.
(cookie有效期仅在| has_expires |下有效。是真的。)
|
boolean |
httponly
If httponly is true the cookie will only be sent for HTTP requests.
(如果httponly为true,则仅针对HTTP请求发送cookie。)
|
java.util.Date |
lastAccess
The cookie last access date.
(Cookie的上次访问日期。)
|
java.lang.String |
name
The cookie name.
(Cookie名称。)
|
java.lang.String |
path
If path is non-empty only URLs at or below the path will get the cookie value.
(如果path为非空,则只有位于path或以下的URL会获得cookie值。)
|
boolean |
secure
If secure is true the cookie will only be sent for HTTPS requests.
(如果为true,则将仅针对HTTPS请求发送cookie。)
|
java.lang.String |
value
The cookie value.
(Cookie值。)
|
构造器和说明 |
---|
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