Class ClientCookieEncoder
java.lang.Object
io.netty.handler.codec.http.cookie.CookieEncoder
io.netty.handler.codec.http.cookie.ClientCookieEncoder
A RFC6265 compliant cookie encoder to be used client side, so
only name=value pairs are sent.
Note that multiple cookies are supposed to be sent at once in a single "Cookie" header.
// ExampleHttpRequestreq = ...; res.setHeader("Cookie",ClientCookieEncoder.encode("JSESSIONID", "1234"));
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ClientCookieEncoderLax 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 final ClientCookieEncoderStrict 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.Fields inherited from class CookieEncoder
strict -
Method Summary
Modifier and TypeMethodDescriptionEncodes the specified cookie into a Cookie header value.Encodes the specified cookies into a single Cookie header value.Encodes the specified cookies into a single Cookie header value.Encodes the specified cookie into a Cookie header value.encode(Collection<? extends Cookie> cookies) Encodes the specified cookies into a single Cookie header value.Methods inherited from class CookieEncoder
validateCookie
-
Field Details
-
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. -
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.
-
-
Method Details
-
encode
-
encode
-
encode
-
encode
Encodes the specified cookies into a single Cookie header value.- Parameters:
cookies- some cookies- Returns:
- a Rfc6265 style Cookie header value, null if no cookies are passed.
-
encode
-