public class DefaultCookie extends Object implements Cookie
Cookie
implementation.UNDEFINED_MAX_AGE
Constructor and Description |
---|
DefaultCookie(String name,
String value)
Creates a new cookie with the specified name and value.
|
Modifier and Type | Method and Description |
---|---|
int |
compareTo(Cookie c) |
String |
domain()
Returns the domain of this
Cookie . |
boolean |
equals(Object o) |
int |
hashCode() |
boolean |
isHttpOnly()
Checks to see if this
Cookie can only be accessed via HTTP. |
boolean |
isSecure()
Checks to see if this
Cookie is secure |
long |
maxAge()
Returns the maximum age of this
Cookie in seconds or Cookie.UNDEFINED_MAX_AGE if unspecified |
String |
name()
Returns the name of this
Cookie . |
String |
path()
Returns the path of this
Cookie . |
void |
setDomain(String domain)
Sets the domain of this
Cookie . |
void |
setHttpOnly(boolean httpOnly)
Determines if this
Cookie is HTTP only. |
void |
setMaxAge(long maxAge)
Sets the maximum age of this
Cookie in seconds. |
void |
setPath(String path)
Sets the path of this
Cookie . |
void |
setSecure(boolean secure)
Sets the security getStatus of this
Cookie |
void |
setValue(String value)
Sets the value of this
Cookie . |
void |
setWrap(boolean wrap)
Sets true if the value of this
Cookie
is to be wrapped with double quotes. |
String |
toString() |
protected String |
validateValue(String name,
String value)
Deprecated.
CookieUtil is package private, will be removed once old Cookie API is dropped
|
String |
value()
Returns the value of this
Cookie . |
boolean |
wrap()
Returns true if the raw value of this
Cookie ,
was wrapped with double quotes in original Set-Cookie header. |
public String name()
Cookie
Cookie
.public String value()
Cookie
Cookie
.public void setValue(String value)
Cookie
Cookie
.public boolean wrap()
Cookie
Cookie
,
was wrapped with double quotes in original Set-Cookie header.public void setWrap(boolean wrap)
Cookie
Cookie
is to be wrapped with double quotes.public String domain()
Cookie
Cookie
.public void setDomain(String domain)
Cookie
Cookie
.public String path()
Cookie
Cookie
.public void setPath(String path)
Cookie
Cookie
.public long maxAge()
Cookie
Cookie
in seconds or Cookie.UNDEFINED_MAX_AGE
if unspecifiedpublic void setMaxAge(long maxAge)
Cookie
Cookie
in seconds.
If an age of 0
is specified, this Cookie
will be
automatically removed by browser because it will expire immediately.
If Cookie.UNDEFINED_MAX_AGE
is specified, this Cookie
will be removed when the
browser is closed.public boolean isSecure()
Cookie
Cookie
is securepublic void setSecure(boolean secure)
Cookie
Cookie
public boolean isHttpOnly()
Cookie
Cookie
can only be accessed via HTTP.
If this returns true, the Cookie
cannot be accessed through
client side script - But only if the browser supports it.
For more information, please look hereisHttpOnly
in interface Cookie
Cookie
is HTTP-only or false if it isn'tpublic void setHttpOnly(boolean httpOnly)
Cookie
Cookie
is HTTP only.
If set to true, this Cookie
cannot be accessed by a client
side script. However, this works only if the browser supports it.
For for information, please look
here.setHttpOnly
in interface Cookie
httpOnly
- True if the Cookie
is HTTP only, otherwise false.public int compareTo(Cookie c)
compareTo
in interface Comparable<Cookie>
@Deprecated protected String validateValue(String name, String value)
IllegalArgumentException
otherwise.
Only intended to be used by DefaultCookie
.name
- attribute namevalue
- attribute valueCopyright © 2008–2017 The Netty Project. All rights reserved.