mirror of
https://github.com/jetty/jetty.project.git
synced 2025-03-03 12:29:31 +00:00
deprecated CUSTOM enums
Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
88f64b8abf
commit
3a15419047
@ -70,12 +70,16 @@ public enum HttpCompliance // TODO in Jetty-10 convert this enum to a class so t
|
||||
RFC7230(sectionsBySpec("RFC7230")),
|
||||
|
||||
/** Custom compliance mode that can be defined with System property <code>org.eclipse.jetty.http.HttpCompliance.CUSTOM0</code> */
|
||||
@Deprecated
|
||||
CUSTOM0(sectionsByProperty("CUSTOM0")),
|
||||
/** Custom compliance mode that can be defined with System property <code>org.eclipse.jetty.http.HttpCompliance.CUSTOM1</code> */
|
||||
@Deprecated
|
||||
CUSTOM1(sectionsByProperty("CUSTOM1")),
|
||||
/** Custom compliance mode that can be defined with System property <code>org.eclipse.jetty.http.HttpCompliance.CUSTOM2</code> */
|
||||
@Deprecated
|
||||
CUSTOM2(sectionsByProperty("CUSTOM2")),
|
||||
/** Custom compliance mode that can be defined with System property <code>org.eclipse.jetty.http.HttpCompliance.CUSTOM3</code> */
|
||||
@Deprecated
|
||||
CUSTOM3(sectionsByProperty("CUSTOM3"));
|
||||
|
||||
private static final Logger LOG = Log.getLogger(HttpParser.class);
|
||||
|
Loading…
x
Reference in New Issue
Block a user