Cookie, this class will be removed in Vert.x 4@Deprecated public interface Cookie extends Cookie
All cookies must have a name and a value and can optionally have other fields set such as path, domain, etc.
(Derived from io.netty.handler.codec.http.Cookie)
| Modifier and Type | Method and Description |
|---|---|
static Cookie |
cookie(io.netty.handler.codec.http.cookie.Cookie nettyCookie)
Deprecated.
Create a new cookie from a Netty cookie
|
static Cookie |
cookie(String name,
String value)
Deprecated.
Create a new cookie
|
boolean |
isChanged()
Deprecated.
Has the cookie been changed? Changed cookieMap will be saved out in the response and sent to the browser.
|
boolean |
isFromUserAgent()
Deprecated.
Has this Cookie been sent from the User Agent (the browser)? or was created during the executing on the request.
|
void |
setChanged(boolean changed)
Deprecated.
Set the cookie as being changed.
|
Cookie |
setDomain(String domain)
Deprecated.
|
Cookie |
setHttpOnly(boolean httpOnly)
Deprecated.
|
Cookie |
setMaxAge(long maxAge)
Deprecated.
|
Cookie |
setPath(String path)
Deprecated.
|
Cookie |
setSecure(boolean secure)
Deprecated.
|
Cookie |
setValue(String value)
Deprecated.
|
encode, getDomain, getName, getPath, getSameSite, getValue, isHttpOnly, isSecure, setSameSitestatic Cookie cookie(io.netty.handler.codec.http.cookie.Cookie nettyCookie)
nettyCookie - the Netty cookieCookie setHttpOnly(boolean httpOnly)
setHttpOnly in interface Cookieboolean isChanged()
void setChanged(boolean changed)
changed - true if changedboolean isFromUserAgent()
Copyright © 2020 Eclipse. All rights reserved.