colesico.framework.validation.Validator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-validation Show documentation
Show all versions of colesico-validation Show documentation
Colesico framework data bean validation assistant and simple dsl validator
package colesico.framework.validation;
public interface Validator {
/**
* Validate a value.
*
* @param value
* @return null if ok, ValidationIssue otherwise
*/
ValidationIssue validate(V value);
/**
* Validates a value
* If any erors throw Validation exception
*
* @param value
* @throws ValidationException
*/
void accept(V value) throws ValidationException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy