01: package org.conform;
02:
03: public interface BeanValidator extends Validator {
04: /**
05: * The validator inspects these properties only. This information is used to map bean level validation issues to
06: * properties (not only) in visual environments. For the sake of optimization, the validator might be called only,
07: * if an affected property has changed and all affected properties don't have issues.
08: * @return the names of the affected properties
09: */
10: String[] getAffectedPropertyNames();
11: }
|