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

org.hibernate.annotations.NotFoundAction Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
package org.hibernate.annotations;

/**
 * Actoin to use when an element is not found in DB while beeing expected
 *
 * @author Emmanuel Bernard
 */
public enum NotFoundAction {
	/**
	 * raise an exception when an element is not found (default and recommended)
	 */
	EXCEPTION,
	/**
	 * ignore the element when not found in DB
	 */
	IGNORE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy