Package io.micronaut.http.netty.cookies
Class NettyCookie
java.lang.Object
io.micronaut.http.netty.cookies.NettyCookie
- All Implemented Interfaces:
Cookie
,Serializable
,Comparable<Cookie>
A wrapper around a Netty cookie.
- Since:
- 1.0
- Author:
- Graeme Rocher
- See Also:
-
Field Summary
Fields inherited from interface io.micronaut.http.cookie.Cookie
ATTRIBUTE_DOMAIN, ATTRIBUTE_EXPIRES, ATTRIBUTE_HTTP_ONLY, ATTRIBUTE_MAX_AGE, ATTRIBUTE_PATH, ATTRIBUTE_SAME_SITE, ATTRIBUTE_SECURE, UNDEFINED_MAX_AGE
-
Constructor Summary
ConstructorDescriptionNettyCookie
(Cookie cookie) NettyCookie
(io.netty.handler.codec.http.cookie.Cookie nettyCookie) NettyCookie
(String name, String value) -
Method Summary
Modifier and TypeMethodDescriptionint
Sets the domain of the cookie.Gets the domain name of this Cookie.long
Gets the maximum age of the cookie in seconds.getName()
io.netty.handler.codec.http.cookie.Cookie
getPath()
The path of the cookie.Checks to see if thisCookie
can be sent along cross-site requests.getValue()
httpOnly
(boolean httpOnly) Sets whether the cookie is HTTP-Only.boolean
Checks to see if thisCookie
can only be accessed via HTTP.boolean
isSecure()
maxAge
(long maxAge) Sets the max age of the cookie in seconds.Sets the path of the cookie.Determines if thisCookie
can be sent along cross-site requests.secure
(boolean secure) Sets whether the cookie is secure.Sets the value.
-
Constructor Details
-
NettyCookie
public NettyCookie(io.netty.handler.codec.http.cookie.Cookie nettyCookie) - Parameters:
nettyCookie
- The Netty cookie
-
NettyCookie
- Parameters:
name
- The namevalue
- The value
-
NettyCookie
- Parameters:
cookie
- Micronaut Cookie
-
-
Method Details
-
getNettyCookie
public io.netty.handler.codec.http.cookie.Cookie getNettyCookie()- Returns:
- The Netty cookie
-
getName
-
getValue
-
getDomain
Description copied from interface:Cookie
Gets the domain name of this Cookie.Domain names are formatted according to RFC 2109.
-
getPath
Description copied from interface:Cookie
The path of the cookie. The cookie is visible to all paths below the request path on the server. -
isHttpOnly
public boolean isHttpOnly()Description copied from interface:Cookie
Checks to see if thisCookie
can only be accessed via HTTP. If this returns true, theCookie
cannot be accessed through client side script - But only if the browser supports it.See here for reference
- Specified by:
isHttpOnly
in interfaceCookie
- Returns:
- True if this
Cookie
is HTTP-only or false if it isn't
-
isSecure
public boolean isSecure() -
getMaxAge
public long getMaxAge()Description copied from interface:Cookie
Gets the maximum age of the cookie in seconds. If the max age has not been explicitly set, then the value returned will beCookie.UNDEFINED_MAX_AGE
, indicating that the Max-Age Attribute should not be written. -
maxAge
Description copied from interface:Cookie
Sets the max age of the cookie in seconds. When not explicitly set, the max age will default toCookie.UNDEFINED_MAX_AGE
and cause the Max-Age Attribute not to be encoded. -
getSameSite
Description copied from interface:Cookie
Checks to see if thisCookie
can be sent along cross-site requests. For more information, please look here- Specified by:
getSameSite
in interfaceCookie
- Returns:
- The SameSite attribute of the cookie
-
sameSite
Description copied from interface:Cookie
-
value
Description copied from interface:Cookie
Sets the value. -
domain
Description copied from interface:Cookie
Sets the domain of the cookie. -
path
Description copied from interface:Cookie
Sets the path of the cookie. -
secure
Description copied from interface:Cookie
Sets whether the cookie is secure. -
httpOnly
Description copied from interface:Cookie
Sets whether the cookie is HTTP-Only. -
compareTo
- Specified by:
compareTo
in interfaceComparable<Cookie>
-