Enum Class ValidationMode
- All Implemented Interfaces:
Serializable, Comparable<ValidationMode>, Constable
What the filter does with a message that does not honour the contract, configured
independently for the request and the response direction.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidationModeReturns the enum constant of this class with the specified name.static ValidationMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
Do not validate this direction at all. No body is buffered, so the streaming behaviour of the gateway is left untouched. -
REPORT
Validate and record the outcome, but forward the message unchanged. Use it to measure how far an existing traffic is from its contract before enforcing anything. -
ENFORCE
Validate and reject a message that breaks the contract:400 Bad Requestfor a request,502 Bad Gatewayfor a response.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-