public static enum HeaderValidationRequestPolicy.ValidationMode extends Enum<HeaderValidationRequestPolicy.ValidationMode>
Validation behavior mode.
In ENFORCING
mode, upon a validation failure, the request will be rejected with a 4xx response
and not sent to the backend.
In PERMISSIVE
mode, the result of the validation will be exposed as metrics while the request
will follow the normal path.
DISABLED
type turns the validation off.
Enum Constant and Description |
---|
Disabled |
Enforcing |
Permissive |
Modifier and Type | Method and Description |
---|---|
static HeaderValidationRequestPolicy.ValidationMode |
create(String key) |
String |
getValue() |
static HeaderValidationRequestPolicy.ValidationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HeaderValidationRequestPolicy.ValidationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeaderValidationRequestPolicy.ValidationMode Enforcing
public static final HeaderValidationRequestPolicy.ValidationMode Permissive
public static final HeaderValidationRequestPolicy.ValidationMode Disabled
public static HeaderValidationRequestPolicy.ValidationMode[] values()
for (HeaderValidationRequestPolicy.ValidationMode c : HeaderValidationRequestPolicy.ValidationMode.values()) System.out.println(c);
public static HeaderValidationRequestPolicy.ValidationMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
public static HeaderValidationRequestPolicy.ValidationMode create(String key)
Copyright © 2016–2023. All rights reserved.