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 classDefaultCookieThe defaultCookieimplementation.Methods in io.netty5.handler.codec.http.cookie that return Cookie Modifier and Type Method Description CookieClientCookieDecoder. 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 specifiedCookieHTTP header value into aCookie.List<Cookie>ServerCookieDecoder. decodeAll(String header)Decodes the specifiedCookieHTTP header value into aCookie.Methods in io.netty5.handler.codec.http.cookie with parameters of type Cookie Modifier and Type Method Description intDefaultCookie. compareTo(Cookie c)StringClientCookieEncoder. encode(Cookie cookie)Encodes the specified cookie into a Cookie header value.StringClientCookieEncoder. encode(Cookie... cookies)Encodes the specified cookies into a single Cookie header value.StringServerCookieEncoder. 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 StringClientCookieEncoder. encode(Iterable<? extends Cookie> cookies)Encodes the specified cookies into a single Cookie header value.StringClientCookieEncoder. 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.
-