package nl.knowlogy.validation;
/**
* Interface that indicates that a javabeans exposes, in addition
* to the default defined ,extra programmatic validations.
* validates.
*
* @author roho
*
*/
public interface ExposesValidates {
/**
* Do the extra validates.
*
* Validates the object. Validation errors are added to the errors object.
*
* @param errors container for the validation errors.
*/
void internalValidate(Messages messages);
}
|