SchemaValidatorsConfig.Builder |
SchemaValidatorsConfig.Builder.executionContextCustomizer(ExecutionContextCustomizer executionContextCustomizer) |
Sets the execution context customizer that is run before each run.
|
void |
SchemaValidatorsConfig.ImmutableSchemaValidatorsConfig.setExecutionContextCustomizer(ExecutionContextCustomizer executionContextCustomizer) |
|
void |
SchemaValidatorsConfig.setExecutionContextCustomizer(ExecutionContextCustomizer executionContextCustomizer) |
|
java.util.Set<ValidationMessage> |
JsonSchema.validate(com.fasterxml.jackson.databind.JsonNode rootNode,
ExecutionContextCustomizer executionCustomizer) |
Validate the given root JsonNode, starting at the root of the data path.
|
<T> T |
JsonSchema.validate(com.fasterxml.jackson.databind.JsonNode rootNode,
OutputFormat<T> format,
ExecutionContextCustomizer executionCustomizer) |
Validates the given root JsonNode, starting at the root of the data path.
|
<T> T |
JsonSchema.validate(ExecutionContext executionContext,
com.fasterxml.jackson.databind.JsonNode node,
OutputFormat<T> format,
ExecutionContextCustomizer executionCustomizer) |
Validates to a format.
|
java.util.Set<ValidationMessage> |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat,
ExecutionContextCustomizer executionCustomizer) |
Validate the given input string using the input format, starting at the root
of the data path.
|
<T> T |
JsonSchema.validate(java.lang.String input,
InputFormat inputFormat,
OutputFormat<T> format,
ExecutionContextCustomizer executionCustomizer) |
Validates the given input string using the input format, starting at the root
of the data path.
|
ValidationResult |
JsonSchema.walk(ExecutionContext executionContext,
com.fasterxml.jackson.databind.JsonNode node,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the JSON node.
|
<T> T |
JsonSchema.walk(ExecutionContext executionContext,
com.fasterxml.jackson.databind.JsonNode node,
OutputFormat<T> outputFormat,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the JSON node.
|
ValidationResult |
JsonSchema.walk(ExecutionContext executionContext,
java.lang.String input,
InputFormat inputFormat,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the input.
|
<T> T |
JsonSchema.walk(ExecutionContext executionContext,
java.lang.String input,
InputFormat inputFormat,
OutputFormat<T> outputFormat,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the input.
|
ValidationResult |
JsonSchema.walk(java.lang.String input,
InputFormat inputFormat,
boolean validate,
ExecutionContextCustomizer executionCustomizer) |
Walk the input.
|
private <T> T |
JsonSchema.walkAtNodeInternal(ExecutionContext executionContext,
com.fasterxml.jackson.databind.JsonNode node,
com.fasterxml.jackson.databind.JsonNode rootNode,
JsonNodePath instanceLocation,
boolean validate,
OutputFormat<T> format,
ExecutionContextCustomizer executionCustomizer) |
|