Uses of Interface
io.netty.handler.codec.http.cookie.Cookie
Packages that use Cookie
Package
Description
Encoder, decoder and their related message types for HTTP.
This package contains Cookie related classes.
-
Uses of Cookie in io.netty.handler.codec.http
Subinterfaces of Cookie in io.netty.handler.codec.httpClasses in io.netty.handler.codec.http that implement Cookie -
Uses of Cookie in io.netty.handler.codec.http.cookie
Classes in io.netty.handler.codec.http.cookie that implement CookieFields in io.netty.handler.codec.http.cookie with type parameters of type CookieModifier and TypeFieldDescription(package private) static final Comparator
<Cookie> ClientCookieEncoder.COOKIE_COMPARATOR
Sort cookies into decreasing order of path length, breaking ties by sorting into increasing chronological order of creation time, as recommended by RFC 6265.Methods in io.netty.handler.codec.http.cookie that return CookieModifier and TypeMethodDescription(package private) Cookie
ClientCookieDecoder.CookieBuilder.cookie()
Decodes the specified Set-Cookie HTTP header value into aCookie
.Methods in io.netty.handler.codec.http.cookie that return types with arguments of type CookieModifier and TypeMethodDescriptionDecodes the specifiedCookie
HTTP header value into aCookie
.Decodes the specifiedCookie
HTTP header value into aCookie
.Methods in io.netty.handler.codec.http.cookie with parameters of type CookieModifier and TypeMethodDescriptionint
Encodes the specified cookie into a Cookie header value.Encodes the specified cookies into a single Cookie header value.private void
ClientCookieEncoder.encode
(StringBuilder buf, Cookie c) Encodes the specified cookie into a Set-Cookie header value.Batch encodes cookies into Set-Cookie header values.Method parameters in io.netty.handler.codec.http.cookie with type arguments of type CookieModifier and TypeMethodDescriptionprivate void
ServerCookieDecoder.decode
(Collection<? super Cookie> cookies, String header) Decodes the specifiedCookie
HTTP header value into aCookie
.Encodes the specified cookies into a single Cookie header value.ClientCookieEncoder.encode
(Collection<? extends Cookie> cookies) Encodes the specified cookies into a single Cookie header value.Batch encodes cookies into Set-Cookie header values.ServerCookieEncoder.encode
(Collection<? extends Cookie> cookies) Batch encodes cookies into Set-Cookie header values.
Cookie
instead.