KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > validator > PropertyConstraint


1 //$Id: PropertyConstraint.java,v 1.1 2005/05/27 08:58:54 epbernard Exp $
2
package org.hibernate.validator;
3
4 import org.hibernate.mapping.Property;
5
6 /**
7  * Interface implemented by the validator
8  * when a constraint may be represented in a
9  * hibernate metadata property
10  *
11  * @author Gavin King
12  */

13 public interface PropertyConstraint {
14     
15     public void apply(Property property);
16 }
17
Popular Tags