Class QuarkusRequestWrapper.QuarkusCookie
- java.lang.Object
-
- io.quarkus.vertx.http.runtime.filters.QuarkusRequestWrapper.QuarkusCookie
-
- All Implemented Interfaces:
io.vertx.core.http.Cookie
- Enclosing class:
- QuarkusRequestWrapper
public class QuarkusRequestWrapper.QuarkusCookie extends Object implements io.vertx.core.http.Cookie
-
-
Constructor Summary
Constructors Constructor Description QuarkusCookie()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringencode()StringgetDomain()longgetMaxAge()StringgetName()StringgetPath()QuarkusRequestWrappergetRequestWrapper()io.vertx.core.http.CookieSameSitegetSameSite()StringgetValue()booleanisHttpOnly()booleanisSecure()io.vertx.core.http.CookiesetDomain(String domain)io.vertx.core.http.CookiesetHttpOnly(boolean httpOnly)io.vertx.core.http.CookiesetMaxAge(long maxAge)io.vertx.core.http.CookiesetPath(String path)io.vertx.core.http.CookiesetSameSite(io.vertx.core.http.CookieSameSite policy)io.vertx.core.http.CookiesetSecure(boolean secure)io.vertx.core.http.CookiesetValue(String value)
-
-
-
Method Detail
-
getRequestWrapper
public QuarkusRequestWrapper getRequestWrapper()
-
getName
public String getName()
- Specified by:
getNamein interfaceio.vertx.core.http.Cookie
-
getValue
public String getValue()
- Specified by:
getValuein interfaceio.vertx.core.http.Cookie
-
setValue
public io.vertx.core.http.Cookie setValue(String value)
- Specified by:
setValuein interfaceio.vertx.core.http.Cookie
-
setDomain
public io.vertx.core.http.Cookie setDomain(String domain)
- Specified by:
setDomainin interfaceio.vertx.core.http.Cookie
-
getDomain
public String getDomain()
- Specified by:
getDomainin interfaceio.vertx.core.http.Cookie
-
setPath
public io.vertx.core.http.Cookie setPath(String path)
- Specified by:
setPathin interfaceio.vertx.core.http.Cookie
-
getPath
public String getPath()
- Specified by:
getPathin interfaceio.vertx.core.http.Cookie
-
setMaxAge
public io.vertx.core.http.Cookie setMaxAge(long maxAge)
- Specified by:
setMaxAgein interfaceio.vertx.core.http.Cookie
-
getMaxAge
public long getMaxAge()
- Specified by:
getMaxAgein interfaceio.vertx.core.http.Cookie
-
setSecure
public io.vertx.core.http.Cookie setSecure(boolean secure)
- Specified by:
setSecurein interfaceio.vertx.core.http.Cookie
-
setHttpOnly
public io.vertx.core.http.Cookie setHttpOnly(boolean httpOnly)
- Specified by:
setHttpOnlyin interfaceio.vertx.core.http.Cookie
-
setSameSite
public io.vertx.core.http.Cookie setSameSite(io.vertx.core.http.CookieSameSite policy)
- Specified by:
setSameSitein interfaceio.vertx.core.http.Cookie
-
encode
public String encode()
- Specified by:
encodein interfaceio.vertx.core.http.Cookie
-
getSameSite
public io.vertx.core.http.CookieSameSite getSameSite()
- Specified by:
getSameSitein interfaceio.vertx.core.http.Cookie
-
isSecure
public boolean isSecure()
- Specified by:
isSecurein interfaceio.vertx.core.http.Cookie
-
isHttpOnly
public boolean isHttpOnly()
- Specified by:
isHttpOnlyin interfaceio.vertx.core.http.Cookie
-
-