Uses of Interface
com.networknt.schema.ExecutionContextCustomizer
-
Packages that use ExecutionContextCustomizer Package Description com.networknt.schema -
-
Uses of ExecutionContextCustomizer in com.networknt.schema
Methods in com.networknt.schema that return ExecutionContextCustomizer Modifier and Type Method Description ExecutionContextCustomizer
SchemaValidatorsConfig. getExecutionContextCustomizer()
Methods in com.networknt.schema with parameters of type ExecutionContextCustomizer Modifier and Type Method Description void
SchemaValidatorsConfig. setExecutionContextCustomizer(ExecutionContextCustomizer executionContextCustomizer)
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.Set<ValidationMessage>
JsonSchema. validate(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(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.
-