Class StandardMandatoryEntityValidator

java.lang.Object
ch.tocco.nice2.persist.core.api.validation.AbstractEntityValidator
ch.tocco.nice2.persist.core.impl.validation.StandardMandatoryEntityValidator
All Implemented Interfaces:
EntitiesValidator, EntityValidator

public class StandardMandatoryEntityValidator extends AbstractEntityValidator
Checks, if fields are filled. Can be combined with related fields (which are used like a trigger) and it can be set, if all have to be filled or only one.
  • Constructor Details

    • StandardMandatoryEntityValidator

      public StandardMandatoryEntityValidator()
  • Method Details

    • validate

      public void validate(Entity entity, EntityValidationResult validationResult) throws PersistException
      Description copied from interface: EntityValidator
      Validate the entity at hand.
      Parameters:
      entity - the entity to be validated
      validationResult - the EntityValidationResult to write the result of the validation to. EntityValidationResult for more details on how to construct the EntityValidationResult.
      Throws:
      PersistException
    • addMyself

      public boolean addMyself(EntityModel model)
      Description copied from interface: EntitiesValidator
      Implement this method to return true if the Validator should add itself to the EntityModel at hand. This method can be useful, if a validator is being used for all models meeting a certain requirement (e.g. model has a field of type X, entity is a lookup entity, etc.). The method is called for each entity model at application startup when building the entity model.
      Specified by:
      addMyself in interface EntitiesValidator
      Overrides:
      addMyself in class AbstractEntityValidator
      Parameters:
      model - the EntityModel
      Returns:
      true to add the Validator to the EntityModel at hand
    • setCreateMandatoryFields

      @Autowired(required=false) public void setCreateMandatoryFields(List<StandardMandatoryEntityValidatorContribution> mandatoryFields)