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

org.hibernate.validator.PersistentClassConstraint Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy