org.hibernate.validator.PersistentClassConstraint 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: PersistentClassConstraint.java 7852 2005-08-11 19:45:28Z epbernard $
package org.hibernate.validator;
import org.hibernate.mapping.PersistentClass;
/**
* Interface implemented by the validator
* when a constraint may be represented in the
* hibernate metadata
*
* @author Gavin King
*/
public interface PersistentClassConstraint {
/**
* Apply the constraint in the hibernate metadata
*
* @param persistentClass
*/
public void apply(PersistentClass persistentClass);
}