@Internal public class NettyCookie extends Object implements Cookie
Constructor and Description |
---|
NettyCookie(io.netty.handler.codec.http.cookie.Cookie nettyCookie) |
NettyCookie(String name,
String value) |
Modifier and Type | Method and Description |
---|---|
int |
compareTo(Cookie o) |
Cookie |
domain(String domain)
Sets the domain of the cookie.
|
String |
getDomain()
Gets the domain name of this Cookie.
|
long |
getMaxAge() |
String |
getName() |
io.netty.handler.codec.http.cookie.Cookie |
getNettyCookie() |
String |
getPath()
The path of the cookie.
|
Optional<SameSite> |
getSameSite()
Checks to see if this
Cookie can be sent along cross-site requests. |
String |
getValue() |
Cookie |
httpOnly(boolean httpOnly)
Sets whether the cookie is HTTP-Only.
|
boolean |
isHttpOnly()
Checks to see if this
Cookie can only be accessed via HTTP. |
boolean |
isSecure() |
Cookie |
maxAge(long maxAge)
Sets the max age of the cookie in seconds.
|
Cookie |
path(String path)
Sets the path of the cookie.
|
Cookie |
sameSite(SameSite sameSite)
Determines if this this
Cookie can be sent along cross-site requests. |
Cookie |
secure(boolean secure)
Sets whether the cookie is secure.
|
Cookie |
value(String value)
Sets the value.
|
public NettyCookie(io.netty.handler.codec.http.cookie.Cookie nettyCookie)
nettyCookie
- The Netty cookiepublic io.netty.handler.codec.http.cookie.Cookie getNettyCookie()
public String getDomain()
Cookie
Domain names are formatted according to RFC 2109.
public String getPath()
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.
See here for reference
isHttpOnly
in interface Cookie
Cookie
is HTTP-only or false if it isn'tpublic boolean isSecure()
public long getMaxAge()
@NonNull public Cookie maxAge(long maxAge)
Cookie
public Optional<SameSite> getSameSite()
Cookie
Cookie
can be sent along cross-site requests.
For more information, please look
heregetSameSite
in interface Cookie
@NonNull public Cookie sameSite(@Nullable SameSite sameSite)
Cookie
@NonNull public Cookie value(@NonNull String value)
Cookie
@NonNull public Cookie domain(String domain)
Cookie
@NonNull public Cookie path(String path)
Cookie
@NonNull public Cookie secure(boolean secure)
Cookie
@NonNull public Cookie httpOnly(boolean httpOnly)
Cookie
public int compareTo(Cookie o)
compareTo
in interface Comparable<Cookie>