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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Cookie
Deprecated.
Use
Cookie instead. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultCookie
The default
Cookie implementation. |
Modifier and Type | Method and Description |
---|---|
Cookie |
ClientCookieDecoder.decode(String header)
Decodes the specified Set-Cookie HTTP header value into a
Cookie . |
Modifier and Type | Method and Description |
---|---|
Set<Cookie> |
ServerCookieDecoder.decode(String header)
Decodes the specified Set-Cookie HTTP header value into a
Cookie . |
Modifier and Type | Method and Description |
---|---|
int |
DefaultCookie.compareTo(Cookie c) |
List<String> |
ServerCookieEncoder.encode(Cookie... cookies)
Batch encodes cookies into Set-Cookie header values.
|
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.
|
String |
ClientCookieEncoder.encode(Cookie cookie)
Encodes the specified cookie into a Cookie header value.
|
Modifier and Type | Method and Description |
---|---|
List<String> |
ServerCookieEncoder.encode(Collection<? extends Cookie> cookies)
Batch encodes cookies into Set-Cookie header values.
|
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.
|
String |
ClientCookieEncoder.encode(Iterable<? extends Cookie> cookies)
Encodes the specified cookies into a single Cookie header value.
|
Copyright © 2008–2017 The Netty Project. All rights reserved.