org.hibernate.validator.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-validator-legacy Show documentation
Show all versions of hibernate-validator-legacy Show documentation
Following the DRY (Don't Repeat Yourself) principle, Hibernate Validator let's you express your domain
constraints once (and only once) and ensure their compliance at various level of your system automatically.
//$Id: Version.java 15169 2008-09-10 10:53:41Z hardy.ferentschik $
package org.hibernate.validator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Hibernate Vaildator version
*
* @author Emmanuel Bernard
*/
public class Version {
public static final String VERSION = "3.1.0.GA";
private static Logger log = LoggerFactory.getLogger( Version.class );
static {
log.info( "Hibernate Validator {}", VERSION );
}
public static void touch() {
}
}