org.hibernate.validator.PropertyConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$Id: PropertyConstraint.java 7852 2005-08-11 19:45:28Z epbernard $
package org.hibernate.validator;
import org.hibernate.mapping.Property;
/**
* Interface implemented by the validator
* when a constraint may be represented in a
* hibernate metadata property
*
* @author Gavin King
*/
public interface PropertyConstraint {
public void apply(Property property);
}