Uses of Class
org.eclipse.jetty.http.HttpCompliance
Packages that use HttpCompliance
-
Uses of HttpCompliance in org.eclipse.jetty.http
Fields in org.eclipse.jetty.http declared as HttpComplianceModifier and TypeFieldDescriptionstatic final HttpComplianceHttpCompliance.LEGACYA legacy HttpCompliance mode that allows all violations except case-insensitive methods.static final HttpComplianceHttpCompliance.RFC2616static final 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 final HttpComplianceHttpCompliance.RFC7230The HttpCompliance mode that supports RFC 7230.static final HttpComplianceHttpCompliance.RFC7230_LEGACYA legacy HttpCompliance mode that supportsRFC7230, but with case-insensitive methods allowed.static final HttpComplianceHttpCompliance.RFC9110The HttpCompliance mode that supports RFC 9110.static final HttpComplianceHttpCompliance.STRICTThe HttpCompliance mode that supports no known violations.Methods in org.eclipse.jetty.http that return HttpComplianceModifier and TypeMethodDescriptionstatic HttpComplianceCreate compliance mode from a String description.static HttpComplianceGet a known compliance mode by name.HttpCompliance.with(String name, HttpCompliance.Violation... violations) Create a new HttpCompliance mode that includes the passedHttpCompliance.Violations.HttpCompliance.without(String name, HttpCompliance.Violation... violations) Create a new HttpCompliance mode that excludes the passedHttpCompliance.Violations.Methods in org.eclipse.jetty.http with parameters of type HttpComplianceModifier and TypeMethodDescriptionstatic voidHttpCompliance.checkHttpCompliance(MetaData.Request request, HttpCompliance mode, ComplianceViolation.Listener listener) Constructors in org.eclipse.jetty.http with parameters of type HttpComplianceModifierConstructorDescriptionHttpParser(HttpParser.RequestHandler handler, int maxHeaderBytes, HttpCompliance compliance) HttpParser(HttpParser.RequestHandler handler, HttpCompliance compliance) HttpParser(HttpParser.ResponseHandler handler, int maxHeaderBytes, HttpCompliance compliance) HttpParser(HttpParser.ResponseHandler handler, HttpCompliance compliance)