Interface Validator
public interface Validator
A validator, validates some input object using a well known schema.
- Author:
- Paulo Lopes
-
Method Summary
Modifier and TypeMethodDescriptionstatic Validatorcreate(JsonSchema schema, JsonSchemaOptions options) Creates a new validator with some initial schema and options.static Validatorcreate(JsonSchema schema, JsonSchemaOptions options, JsonFormatValidator jsonFormatValidator) Creates a new validator with some initial schema, options and a custom JSON format validator.Validate a given input against the initial schema.
-
Method Details
-
create
Creates a new validator with some initial schema and options.When validation is to be reused, it is recommended to create a
SchemaRepositoryinstance and use theSchemaRepository.validator(String)} method. The use of aStringkey allows avoiding re-parsing and fast lookups.- Parameters:
schema- the initial schemaoptions- the validator options- Returns:
- a validator instance
-
create
static Validator create(JsonSchema schema, JsonSchemaOptions options, JsonFormatValidator jsonFormatValidator) Creates a new validator with some initial schema, options and a custom JSON format validator. When validation is to be reused, it is recommended to create aSchemaRepositoryinstance and use theSchemaRepository.validator(String)} method. The use of aStringkey allows avoiding re-parsing and fast lookups.- Parameters:
schema- the initial schemaoptions- the validator optionsjsonFormatValidator- the custom JSON format validator- Returns:
- a validator instance
-
validate
Validate a given input against the initial schema.- Parameters:
instance- instance to validate- Returns:
- returns a output unit object as defined by the options
- Throws:
SchemaException- if the validation cannot complete, for example when a reference is missing.
-