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

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

Go to download

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.

There is a newer version: 4.0.2.GA
Show newest version
//$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() {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy