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: 6.6.2.Final
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.annotations;


/**
 * Specifies how Hibernate should handle the case of an orphaned foreign
 * key with no associated row in the referenced table. This is a situation
 * that can only occur in a database with missing foreign key constraints.
 * 

* When a database lacks foreign key constraints, it's normal for it to * accumulate data with referential integrity violations over time. * Alternatively, this situation is also sometimes encountered in legacy * foreign key schemes where some "magic value", instead of {@code NULL}, * indicates a missing reference. * * @see NotFound * * @author Emmanuel Bernard */ public enum NotFoundAction { /** * Raise an exception when a foreign key value has no corresponding * primary key value in the referenced table. */ EXCEPTION, /** * Treat a foreign key value with no corresponding primary key value * in the referenced table as a null reference. */ IGNORE }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy