Class NettyCookie
java.lang.Object
io.micronaut.http.netty.cookies.NettyCookie
- All Implemented Interfaces:
Cookie, Serializable, Comparable<Cookie>
-
Field Summary
Fields inherited from interface Cookie
ATTRIBUTE_DOMAIN, ATTRIBUTE_EXPIRES, ATTRIBUTE_HTTP_ONLY, ATTRIBUTE_MAX_AGE, ATTRIBUTE_PATH, ATTRIBUTE_SAME_SITE, ATTRIBUTE_SECURE, UNDEFINED_MAX_AGE -
Constructor Summary
ConstructorsConstructorDescriptionNettyCookie(Cookie cookie) NettyCookie(io.netty.handler.codec.http.cookie.Cookie nettyCookie) NettyCookie(String name, String value) -
Method Summary
Modifier and TypeMethodDescriptionintSets the domain of the cookie.Gets the domain name of this Cookie.longGets the maximum age of the cookie in seconds.getName()io.netty.handler.codec.http.cookie.CookiegetPath()The path of the cookie.Checks to see if thisCookiecan be sent along cross-site requests.getValue()httpOnly(boolean httpOnly) Sets whether the cookie is HTTP-Only.booleanChecks to see if thisCookiecan only be accessed via HTTP.booleanisSecure()maxAge(long maxAge) Sets the max age of the cookie in seconds.Sets the path of the cookie.Determines if thisCookiecan 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
-
NettyCookie
- Parameters:
cookie- Micronaut Cookie
-
-
Method Details
-
getNettyCookie
public io.netty.handler.codec.http.cookie.Cookie getNettyCookie()- Returns:
- The Netty cookie
-
getName
-
getValue
-
getDomain
-
getPath
-
isHttpOnly
public boolean isHttpOnly()Description copied from interface:CookieChecks to see if thisCookiecan only be accessed via HTTP. If this returns true, theCookiecannot be accessed through client side script - But only if the browser supports it.See here for reference
- Specified by:
isHttpOnlyin interfaceCookie- Returns:
- True if this
Cookieis HTTP-only or false if it isn't
-
isSecure
-
getMaxAge
public long getMaxAge()Description copied from interface:CookieGets 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:CookieSets the max age of the cookie in seconds. When not explicitly set, the max age will default toCookie.UNDEFINED_MAX_AGEand cause the Max-Age Attribute not to be encoded. -
getSameSite
-
sameSite
-
value
-
domain
-
path
-
secure
-
httpOnly
-
compareTo
- Specified by:
compareToin interfaceComparable<Cookie>
-