Package ca.uhn.fhir.validation
Interface IValidatorModule
-
- All Known Subinterfaces:
IInstanceValidatorModule
- All Known Implementing Classes:
SchemaBaseValidator,SchematronBaseValidator
public interface IValidatorModule
An individual validation module, which applies validation rules against resources and adds failure/informational messages as it goes. See Validation for a list of available modules. You may also create your own.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvalidateResource(IValidationContext<IBaseResource> theCtx)Validate the actual resource.
-
-
-
Method Detail
-
validateResource
void validateResource(IValidationContext<IBaseResource> theCtx)
Validate the actual resource. TheIValidationContextcan be used to access the resource being validated, and is populated with the results.
-
-