All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.holmes.Validator Maven / Gradle / Ivy

Go to download

Holmes is a library that provides a simple and fluent API for writing business rules validations on Java projects.

The newest version!
package org.holmes;

/**
 * Validators give more flexibility to the validation process. This provides
 * extensibility to the framework, once the user can write his own specific
 * validator.
 * 
 * @author diegossilveira
 * 
 * @param 
 *            the type this validator validates.
 */
public interface Validator {

	boolean isValid(T target);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy