Java io.netty.handler.codec.http.cookie ServerCookieEncoder fields, constructors, methods, implement or subclass

Example usage for Java io.netty.handler.codec.http.cookie ServerCookieEncoder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.handler.codec.http.cookie ServerCookieEncoder.

The text is from its open source code.

Field

ServerCookieEncoderSTRICT
Strict encoder that validates that name and value chars are in the valid scope defined in RFC6265, and (for methods that accept multiple cookies) that only one cookie is encoded with any given name.
ServerCookieEncoderLAX
Lax instance that doesn't validate name and value, and that allows multiple cookies with the same name.