org.hibernate.annotations.OnDeleteAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
package org.hibernate.annotations;
/**
* Possible actions on deletes
*
* @author Emmanuel Bernard
*/
public enum OnDeleteAction {
/**
* the default
*/
NO_ACTION,
/**
* use cascade delete capabilities of the DD
*/
CASCADE
}