1 package org.hibernate.annotations;2 3 /**4 * Possible actions on deletes5 * @author Emmanuel Bernard6 */7 public enum OnDeleteAction {8 /** the default */9 NO_ACTION,10 /** use cascade delete capabilities of the DD */11 CASCADE12 }13