com.firefly.codec.http2.model.HttpCompliance Maven / Gradle / Ivy
package com.firefly.codec.http2.model;
/**
* HTTP compliance modes:
*
* - RFC7230
* - (default) Compliance with RFC7230
* - RFC2616
* - Wrapped/Continued headers and HTTP/0.9 supported
* - LEGACY
* - (aka STRICT) Adherence to Servlet Specification requirement for exact
* case of header names, bypassing the header caches, which are case
* insensitive, otherwise equivalent to RFC2616
*
*/
public enum HttpCompliance {
LEGACY, RFC2616, RFC7230
}