Class DomainSchemaParserLegacy
java.lang.Object
com.aquima.interactions.communication.impl.evaluator.parser.DomainSchemaParserLegacy
Parses a DataObject to the inferenceContext based on the data contract.
- Since:
- 9.3
- Author:
- A.Pragt
-
Constructor Summary
ConstructorsConstructorDescriptionDomainSchemaParserLegacy
(IDomainSchemaDefinition definition, IDomainSchemaRegistry registry, IDomainSchemaValidator schemaValidator) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescriptionparse
(DataValue data, InferenceContext profile, ParserContext context) Parses the data object and returns the instance it is stored in.
-
Constructor Details
-
DomainSchemaParserLegacy
public DomainSchemaParserLegacy(IDomainSchemaDefinition definition, IDomainSchemaRegistry registry, IDomainSchemaValidator schemaValidator) Creates a new instance.- Parameters:
definition
- the data contract, not null.registry
- the definition of the domain schemas in thr projectschemaValidator
- the domain schema validator to use
-
-
Method Details
-
parse
public EntityValue parse(DataValue data, InferenceContext profile, ParserContext context) throws ContractParseException, FieldValidationException Parses the data object and returns the instance it is stored in.- Parameters:
data
- The data object, not null.profile
- The profile to use while parsing, not null.context
- The parse context, not null.- Returns:
- Reference to the created root instance, never null.
- Throws:
ContractParseException
- Is thrown when a parse error occurred.FieldValidationException
- Is thrown when a field validation isn't met.
-