Uses of Interface
io.netty.handler.codec.http.Cookie
-
Packages that use Cookie Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP. -
-
Uses of Cookie in io.netty.handler.codec.http
Classes in io.netty.handler.codec.http that implement Cookie Modifier and Type Class Description class
DefaultCookie
Deprecated.UseDefaultCookie
instead.Methods in io.netty.handler.codec.http that return types with arguments of type Cookie Modifier and Type Method Description static Set<Cookie>
CookieDecoder. decode(String header)
Deprecated.static Set<Cookie>
CookieDecoder. decode(String header, boolean strict)
Deprecated.Methods in io.netty.handler.codec.http with parameters of type Cookie Modifier and Type Method Description static String
ClientCookieEncoder. encode(Cookie cookie)
Deprecated.static String
ClientCookieEncoder. encode(Cookie... cookies)
Deprecated.static String
ServerCookieEncoder. encode(Cookie cookie)
Deprecated.static List<String>
ServerCookieEncoder. encode(Cookie... cookies)
Deprecated.Method parameters in io.netty.handler.codec.http with type arguments of type Cookie Modifier and Type Method Description static String
ClientCookieEncoder. encode(Iterable<Cookie> cookies)
Deprecated.static List<String>
ServerCookieEncoder. encode(Iterable<Cookie> cookies)
Deprecated.static List<String>
ServerCookieEncoder. encode(Collection<Cookie> cookies)
Deprecated.
-