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 Details

    • QuarkusCookie

      public QuarkusCookie()
  • Method Details

    • getRequestWrapper

      public QuarkusRequestWrapper getRequestWrapper()
    • getName

      public String getName()
      Specified by:
      getName in interface io.vertx.core.http.Cookie
    • getValue

      public String getValue()
      Specified by:
      getValue in interface io.vertx.core.http.Cookie
    • setValue

      public io.vertx.core.http.Cookie setValue(String value)
      Specified by:
      setValue in interface io.vertx.core.http.Cookie
    • setDomain

      public io.vertx.core.http.Cookie setDomain(String domain)
      Specified by:
      setDomain in interface io.vertx.core.http.Cookie
    • getDomain

      public String getDomain()
      Specified by:
      getDomain in interface io.vertx.core.http.Cookie
    • setPath

      public io.vertx.core.http.Cookie setPath(String path)
      Specified by:
      setPath in interface io.vertx.core.http.Cookie
    • getPath

      public String getPath()
      Specified by:
      getPath in interface io.vertx.core.http.Cookie
    • setMaxAge

      public io.vertx.core.http.Cookie setMaxAge(long maxAge)
      Specified by:
      setMaxAge in interface io.vertx.core.http.Cookie
    • getMaxAge

      public long getMaxAge()
      Specified by:
      getMaxAge in interface io.vertx.core.http.Cookie
    • setSecure

      public io.vertx.core.http.Cookie setSecure(boolean secure)
      Specified by:
      setSecure in interface io.vertx.core.http.Cookie
    • setHttpOnly

      public io.vertx.core.http.Cookie setHttpOnly(boolean httpOnly)
      Specified by:
      setHttpOnly in interface io.vertx.core.http.Cookie
    • setSameSite

      public io.vertx.core.http.Cookie setSameSite(io.vertx.core.http.CookieSameSite policy)
      Specified by:
      setSameSite in interface io.vertx.core.http.Cookie
    • encode

      public String encode()
      Specified by:
      encode in interface io.vertx.core.http.Cookie
    • getSameSite

      public io.vertx.core.http.CookieSameSite getSameSite()
      Specified by:
      getSameSite in interface io.vertx.core.http.Cookie
    • isSecure

      public boolean isSecure()
      Specified by:
      isSecure in interface io.vertx.core.http.Cookie
    • isHttpOnly

      public boolean isHttpOnly()
      Specified by:
      isHttpOnly in interface io.vertx.core.http.Cookie