Uses of Interface
io.netty5.handler.codec.http.cookie.Cookie
-
Packages that use Cookie Package Description io.netty5.handler.codec.http.cookie This package contains Cookie related classes. -
-
Uses of Cookie in io.netty5.handler.codec.http.cookie
Classes in io.netty5.handler.codec.http.cookie that implement Cookie Modifier and Type Class Description class
DefaultCookie
The defaultCookie
implementation.Methods in io.netty5.handler.codec.http.cookie that return Cookie Modifier and Type Method Description Cookie
ClientCookieDecoder. decode(String header)
Decodes the specified Set-Cookie HTTP header value into aCookie
.Methods in io.netty5.handler.codec.http.cookie that return types with arguments of type Cookie Modifier and Type Method Description Set<Cookie>
ServerCookieDecoder. decode(String header)
Decodes the specifiedCookie
HTTP header value into aCookie
.List<Cookie>
ServerCookieDecoder. decodeAll(String header)
Decodes the specifiedCookie
HTTP header value into aCookie
.Methods in io.netty5.handler.codec.http.cookie with parameters of type Cookie Modifier and Type Method Description int
DefaultCookie. compareTo(Cookie c)
String
ClientCookieEncoder. encode(Cookie cookie)
Encodes the specified cookie into a Cookie header value.String
ClientCookieEncoder. encode(Cookie... cookies)
Encodes the specified cookies into a single Cookie header value.String
ServerCookieEncoder. encode(Cookie cookie)
Encodes the specified cookie into a Set-Cookie header value.List<String>
ServerCookieEncoder. encode(Cookie... cookies)
Batch encodes cookies into Set-Cookie header values.Method parameters in io.netty5.handler.codec.http.cookie with type arguments of type Cookie Modifier and Type Method Description String
ClientCookieEncoder. encode(Iterable<? extends Cookie> cookies)
Encodes the specified cookies into a single Cookie header value.String
ClientCookieEncoder. encode(Collection<? extends Cookie> cookies)
Encodes the specified cookies into a single Cookie header value.List<String>
ServerCookieEncoder. encode(Iterable<? extends Cookie> cookies)
Batch encodes cookies into Set-Cookie header values.List<String>
ServerCookieEncoder. encode(Collection<? extends Cookie> cookies)
Batch encodes cookies into Set-Cookie header values.
-