Uses of Interface
io.netty.handler.codec.http.cookie.Cookie
-
Packages that use Cookie Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.cookie This package contains Cookie related classes. -
-
Uses of Cookie in io.netty.handler.codec.http
Subinterfaces of Cookie in io.netty.handler.codec.http Modifier and Type Interface Description interface
Cookie
Deprecated.UseCookie
instead.Classes in io.netty.handler.codec.http that implement Cookie Modifier and Type Class Description class
DefaultCookie
Deprecated.UseDefaultCookie
instead. -
Uses of Cookie in io.netty.handler.codec.http.cookie
Classes in io.netty.handler.codec.http.cookie that implement Cookie Modifier and Type Class Description class
DefaultCookie
The defaultCookie
implementation.Fields in io.netty.handler.codec.http.cookie with type parameters of type Cookie Modifier and Type Field Description (package private) static java.util.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 Cookie Modifier and Type Method Description (package private) Cookie
ClientCookieDecoder.CookieBuilder. cookie()
Cookie
ClientCookieDecoder. decode(java.lang.String header)
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 Cookie Modifier and Type Method Description java.util.Set<Cookie>
ServerCookieDecoder. decode(java.lang.String header)
Decodes the specified Set-Cookie HTTP header value into aCookie
.java.util.List<Cookie>
ServerCookieDecoder. decodeAll(java.lang.String header)
Decodes the specified Set-Cookie HTTP header value into aCookie
.Methods in io.netty.handler.codec.http.cookie with parameters of type Cookie Modifier and Type Method Description int
DefaultCookie. compareTo(Cookie c)
java.lang.String
ClientCookieEncoder. encode(Cookie cookie)
Encodes the specified cookie into a Cookie header value.java.lang.String
ClientCookieEncoder. encode(Cookie... cookies)
Encodes the specified cookies into a single Cookie header value.private void
ClientCookieEncoder. encode(java.lang.StringBuilder buf, Cookie c)
java.lang.String
ServerCookieEncoder. encode(Cookie cookie)
Encodes the specified cookie into a Set-Cookie header value.java.util.List<java.lang.String>
ServerCookieEncoder. encode(Cookie... cookies)
Batch encodes cookies into Set-Cookie header values.Method parameters in io.netty.handler.codec.http.cookie with type arguments of type Cookie Modifier and Type Method Description private void
ServerCookieDecoder. decode(java.util.Collection<? super Cookie> cookies, java.lang.String header)
Decodes the specified Set-Cookie HTTP header value into aCookie
.java.lang.String
ClientCookieEncoder. encode(java.lang.Iterable<? extends Cookie> cookies)
Encodes the specified cookies into a single Cookie header value.java.lang.String
ClientCookieEncoder. encode(java.util.Collection<? extends Cookie> cookies)
Encodes the specified cookies into a single Cookie header value.java.util.List<java.lang.String>
ServerCookieEncoder. encode(java.lang.Iterable<? extends Cookie> cookies)
Batch encodes cookies into Set-Cookie header values.java.util.List<java.lang.String>
ServerCookieEncoder. encode(java.util.Collection<? extends Cookie> cookies)
Batch encodes cookies into Set-Cookie header values.
-