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.
如果域为空,则将创建主机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非空,则路径中或路径下方的URL将获取cookie值。 |
boolean |
secure
If secure is true the cookie will only be sent for HTTPS requests.
如果secure为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