Class StandardDesignatedRelationEntityValidator
java.lang.Object
ch.tocco.nice2.persist.core.api.validation.AbstractEntityValidator
ch.tocco.nice2.persist.core.impl.validation.StandardDesignatedRelationEntityValidator
- All Implemented Interfaces:
- EntitiesValidator,- EntityValidator
Checks if exactly one of the available relations is set
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanaddMyself(EntityModel model) Implement this method to return true if the Validator should add itself to the EntityModel at hand.voidvoidvalidate(Entity entity, EntityValidationResult validationResult) Validate the entity at hand.Methods inherited from class ch.tocco.nice2.persist.core.api.validation.AbstractEntityValidatorgetNameMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ch.tocco.nice2.persist.core.api.validation.EntityValidatorvalidate
- 
Field Details- 
ERROR_MESSAGE_ID- See Also:
 
- 
ERROR_MESSAGE_VAR_RELATIONS- See Also:
 
- 
ERROR_MESSAGE_SEPARATORpublic static final com.google.common.base.Joiner ERROR_MESSAGE_SEPARATOR
 
- 
- 
Constructor Details- 
StandardDesignatedRelationEntityValidator
 
- 
- 
Method Details- 
validatepublic void validate(Entity entity, EntityValidationResult validationResult) throws PersistException Description copied from interface:EntityValidatorValidate the entity at hand.- Parameters:
- entity- the entity to be validated
- validationResult- the EntityValidationResult to write the result of the validation to.- EntityValidationResultfor more details on how to construct the EntityValidationResult.
- Throws:
- PersistException
 
- 
setAvailableRelations@Autowired(required=false) public void setAvailableRelations(List<StandardDesignatedRelationEntityValidatorContribution> contributions) 
- 
addMyselfDescription copied from interface:EntitiesValidatorImplement 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:
- addMyselfin interface- EntitiesValidator
- Overrides:
- addMyselfin class- AbstractEntityValidator
- Parameters:
- model- the EntityModel
- Returns:
- true to add the Validator to the EntityModel at hand
 
 
-