All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.firefly.codec.http2.model.HttpCompliance Maven / Gradle / Ivy

There is a newer version: 4.0.3.2
Show newest version
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 }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy