public final class ClientCookieEncoder extends CookieEncoder
Cookie#rawValue()
will be used.
Otherwise, Cookie.value()
will be used unquoted.
Note that multiple cookies are supposed to be sent at once in a single "Cookie" header.
// ExampleHttpRequest
req = ...; res.setHeader("Cookie",ClientCookieEncoder
.encode("JSESSIONID", "1234"));
ClientCookieDecoder
Modifier and Type | Field and Description |
---|---|
static ClientCookieEncoder |
LAX
Lax instance that doesn't validate name and value, and (for methods that accept multiple cookies) keeps
cookies in the order in which they were given.
|
static ClientCookieEncoder |
STRICT
Strict encoder that validates that name and value chars are in the valid scope and (for methods that accept
multiple cookies) sorts cookies into order of decreasing path length, as specified in RFC6265.
|
strict
Modifier and Type | Method and Description |
---|---|
java.lang.String |
encode(java.util.Collection<? extends Cookie> cookies)
Encodes the specified cookies into a single Cookie header value.
|
java.lang.String |
encode(Cookie... cookies)
Encodes the specified cookies into a single Cookie header value.
|
java.lang.String |
encode(Cookie cookie)
Encodes the specified cookie into a Cookie header value.
|
java.lang.String |
encode(java.lang.Iterable<? extends Cookie> cookies)
Encodes the specified cookies into a single Cookie header value.
|
java.lang.String |
encode(java.lang.String name,
java.lang.String value)
Encodes the specified cookie into a Cookie header value.
|
validateCookie
public static final ClientCookieEncoder STRICT
public static final ClientCookieEncoder LAX
public java.lang.String encode(java.lang.String name, java.lang.String value)
name
- the cookie namevalue
- the cookie valuepublic java.lang.String encode(Cookie cookie)
specified
- the cookiepublic java.lang.String encode(Cookie... cookies)
cookies
- some cookiespublic java.lang.String encode(java.util.Collection<? extends Cookie> cookies)
cookies
- some cookiespublic java.lang.String encode(java.lang.Iterable<? extends Cookie> cookies)
cookies
- some cookiesCopyright © 2008–2018 The Netty Project. All rights reserved.