All Known Implementing Classes:
BeanValidationEntityValidatorServiceImpl, EntityValidatorServiceImpl

public interface EntityValidatorService
Validates all of the populated properties for entities
Author:
Phillip Verheyden
  • Method Details

    • validate

      void validate(Entity submittedEntity, @Nonnull Serializable instance, Map<String,FieldMetadata> propertiesMetadata, RecordHelper recordHelper, boolean validateUnsubmittedProperties)
      Validate the given entity. Implementers should set Entity.setValidationFailure(boolean) appropriately. Validation is invoked after the entire instance has been populated according to BasicPersistenceModule.createPopulatedInstance(Serializable, Entity, Map, Boolean).
      Parameters:
      submittedEntity - DTO representation of instance
      instance - actual domain representation of submittedEntity. If this is null, all PropertyValidators will be skipped, as this instance type is consulted to match whether or not the properties from propertiesMetadata are applicable and should be validated
      propertiesMetadata - all of the merged properties metadata for the given Entity
      recordHelper -
      validateUnsubmittedProperties - if set to true, will ignore validation for properties that weren't submitted along with the entity
      Throws:
      InstantiationException
      IllegalAccessException
      ClassNotFoundException
    • getGlobalEntityValidators

      List<GlobalPropertyValidator> getGlobalEntityValidators()
      Returns:
      the global validators that will be executed for every Entity
    • setGlobalEntityValidators

      void setGlobalEntityValidators(List<GlobalPropertyValidator> globalEntityValidators)

      Set the global validators that will be run on every entity that is attempted to be saved in the admin. Global validators are useful to operate on things like field types and other scenarios that could occur with a number of entities. Rather than being required to define a ValidationConfiguration on all of those properties, this can more conveniently validate that set of properties.

      An example of a global validator in Broadleaf is the RequiredPropertyValidator which will ensure that every property that is marked as required will fail validation if a value is unset.

      Parameters:
      globalEntityValidators - the globalEntityValidators to set