public interface ValidationManager
DBTransaction and Entity
 to maintain a list of validation listeners.
 A validation managers notifies each of its listeners to perform its validation routine, and if validation is successful removes it from the list.
| Modifier and Type | Method and Description | 
|---|---|
void | 
addToValidationListeners(ValidationListener w)
Adds a validation listener. 
 | 
void | 
validate()
Implements validation logic for this object and invokes
  
validate() for each validation listener. | 
void validate()
       throws JboException
validate() for each validation listener.JboException - if validation fails.void addToValidationListeners(ValidationListener w)
The listener will be notified to perform its own validation when this validation manager is validated.
w - a validation listener.