Uses of Class
org.eclipse.jetty.http.HttpCompliance
-
Packages that use HttpCompliance Package Description org.eclipse.jetty.http Jetty Http : Tools for Http processing -
-
Uses of HttpCompliance in org.eclipse.jetty.http
Fields in org.eclipse.jetty.http declared as HttpCompliance Modifier and Type Field Description static HttpComplianceHttpCompliance. LEGACYA legacy HttpCompliance mode that allows all violations except case-insensitive methods.static HttpComplianceHttpCompliance. RFC2616static HttpComplianceHttpCompliance. RFC2616_LEGACYA legacy HttpCompliance mode that supportsRFC2616, but that also allows: case-insensitive methods; colons after field names;Transfer-EncodingwithContent-Lengthfields; and multipleContent-Lengthvalues.static HttpComplianceHttpCompliance. RFC7230The HttpCompliance mode that supports RFC 7230 with no known violations.static HttpComplianceHttpCompliance. RFC7230_LEGACYA legacy HttpCompliance mode that supportsRFC7230, but with case-insensitive methods allowed.Methods in org.eclipse.jetty.http that return HttpCompliance Modifier and Type Method Description static HttpComplianceHttpCompliance. from(java.lang.String spec)Create compliance mode from a String description.static HttpComplianceHttpCompliance. valueOf(java.lang.String name)Get a known compliance mode by name.HttpComplianceHttpCompliance. with(java.lang.String name, HttpCompliance.Violation... violations)Create a new HttpCompliance mode that includes the passedHttpCompliance.Violations.HttpComplianceHttpCompliance. without(java.lang.String name, HttpCompliance.Violation... violations)Create a new HttpCompliance mode that excludes the passedHttpCompliance.Violations.Constructors in org.eclipse.jetty.http with parameters of type HttpCompliance Constructor Description HttpParser(HttpParser.RequestHandler handler, int maxHeaderBytes, HttpCompliance compliance)HttpParser(HttpParser.RequestHandler handler, HttpCompliance compliance)HttpParser(HttpParser.ResponseHandler handler, int maxHeaderBytes, HttpCompliance compliance)
-