Package ca.uhn.fhir.validation
Class FhirValidator
java.lang.Object
ca.uhn.fhir.validation.FhirValidator
Resource validator, which checks resources for compliance against various validation schemes (schemas, schematrons, profiles, etc.)
To obtain a resource validator, call FhirContext.newValidator()
Thread safety note: This class is thread safe, so you may register or unregister validator modules at any time. Individual modules are not guaranteed to be thread safe however. Reconfigure them with caution.
-
Constructor Summary
ConstructorsConstructorDescriptionFhirValidator(FhirContext theFhirContext)Constructor (this should not be called directly, but ratherFhirContext.newValidator()should be called to obtain an instance ofFhirValidator) -
Method Summary
Modifier and TypeMethodDescriptionbooleanShould the validator validate the resource against the base schema (the schema provided with the FHIR distribution itself)booleanShould the validator validate the resource against the base schema (the schema provided with the FHIR distribution itself)registerValidatorModule(IValidatorModule theValidator)Add a new validator module to this validator.voidsetInterceptorBroadcaster(IInterceptorBroadcaster theInterceptorBraodcaster)Optionally supplies an interceptor broadcaster that will be used to invoke validation related Pointcut eventssetValidateAgainstStandardSchema(boolean theValidateAgainstStandardSchema)Should the validator validate the resource against the base schema (the schema provided with the FHIR distribution itself)setValidateAgainstStandardSchematron(boolean theValidateAgainstStandardSchematron)Should the validator validate the resource against the base schematron (the schematron provided with the FHIR distribution itself)voidunregisterValidatorModule(IValidatorModule theValidator)Removes a validator module from this validator.validateWithResult(String theResource)Validates a resource instance returning aValidationResultwhich contains the results.validateWithResult(String theResource, ValidationOptions theOptions)Validates a resource instance returning aValidationResultwhich contains the results.validateWithResult(IBaseResource theResource)Validates a resource instance returning aValidationResultwhich contains the results.validateWithResult(IBaseResource theResource, ValidationOptions theOptions)Validates a resource instance returning aValidationResultwhich contains the results.
-
Constructor Details
-
FhirValidator
Constructor (this should not be called directly, but ratherFhirContext.newValidator()should be called to obtain an instance ofFhirValidator)
-
-
Method Details
-
isValidateAgainstStandardSchema
Should the validator validate the resource against the base schema (the schema provided with the FHIR distribution itself) -
setValidateAgainstStandardSchema
Should the validator validate the resource against the base schema (the schema provided with the FHIR distribution itself)- Returns:
- Returns a referens to
thisfor method chaining
-
isValidateAgainstStandardSchematron
Should the validator validate the resource against the base schema (the schema provided with the FHIR distribution itself) -
setValidateAgainstStandardSchematron
public FhirValidator setValidateAgainstStandardSchematron(boolean theValidateAgainstStandardSchematron)Should the validator validate the resource against the base schematron (the schematron provided with the FHIR distribution itself)- Returns:
- Returns a referens to
thisfor method chaining
-
registerValidatorModule
Add a new validator module to this validator. You may register as many modules as you like at any time.- Parameters:
theValidator- The validator module. Must not be null.- Returns:
- Returns a reference to
thisfor easy method chaining.
-
unregisterValidatorModule
Removes a validator module from this validator. You may register as many modules as you like, and remove them at any time.- Parameters:
theValidator- The validator module. Must not be null.
-
validateWithResult
Validates a resource instance returning aValidationResultwhich contains the results.- Parameters:
theResource- the resource to validate- Returns:
- the results of validation
- Since:
- 0.7
-
validateWithResult
Validates a resource instance returning aValidationResultwhich contains the results.- Parameters:
theResource- the resource to validate- Returns:
- the results of validation
- Since:
- 1.1
-
validateWithResult
public ValidationResult validateWithResult(IBaseResource theResource, ValidationOptions theOptions)Validates a resource instance returning aValidationResultwhich contains the results.- Parameters:
theResource- the resource to validatetheOptions- Optionally provides options to the validator- Returns:
- the results of validation
- Since:
- 4.0.0
-
validateWithResult
Validates a resource instance returning aValidationResultwhich contains the results.- Parameters:
theResource- the resource to validatetheOptions- Optionally provides options to the validator- Returns:
- the results of validation
- Since:
- 4.0.0
-
setInterceptorBroadcaster
Optionally supplies an interceptor broadcaster that will be used to invoke validation related Pointcut events- Since:
- 5.5.0
-