Package com.networknt.schema
Interface ExecutionContextCustomizer
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ExecutionContextCustomizer
Customize the execution context before validation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcustomize(ExecutionContext executionContext, SchemaContext schemaContext)Customize the execution context before validation.
-
-
-
Method Detail
-
customize
void customize(ExecutionContext executionContext, SchemaContext schemaContext)
Customize the execution context before validation.The schema context should only be used for reference as it is shared.
- Parameters:
executionContext- the execution contextschemaContext- the schema context for reference
-
-