org.unitils.objectvalidation.ObjectValidationRulesCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unitils-objectvalidation Show documentation
Show all versions of unitils-objectvalidation Show documentation
Unitils module to validate objects.
package org.unitils.objectvalidation;
import java.util.List;
/**
* The interface for a collection of rules.
*
* @author Matthieu Mestrez
* @since Oct 11, 2013
*/
public interface ObjectValidationRulesCollection {
List getRules();
EqualsHashCodeValidator getEqualsHashCodeValidator();
}