Uses of Class
io.helidon.common.http.SetCookie
-
Packages that use SetCookie Package Description io.helidon.common.http HTTP APIs and implementations usable by both server and client side of the HTTP story.io.helidon.webclient A reactive client for rest calls.io.helidon.webserver Reactive web server API. -
-
Uses of SetCookie in io.helidon.common.http
Methods in io.helidon.common.http that return SetCookie Modifier and Type Method Description SetCookie
SetCookie.Builder. build()
static SetCookie
SetCookie. create(String name, String value)
Creates new instance.static SetCookie
SetCookie. parse(String setCookie)
Parses new instance ofSetCookie
from the String representation. -
Uses of SetCookie in io.helidon.webclient
Methods in io.helidon.webclient that return types with arguments of type SetCookie Modifier and Type Method Description List<SetCookie>
WebClientResponseHeaders. setCookies()
ReturnsSetCookie
header of the response. -
Uses of SetCookie in io.helidon.webserver
Methods in io.helidon.webserver with parameters of type SetCookie Modifier and Type Method Description void
ResponseHeaders. addCookie(SetCookie cookie)
AddsSet-Cookie
header specified in RFC6265.
-