KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > annotations > OnDeleteAction


1 package org.hibernate.annotations;
2
3 /**
4  * Possible actions on deletes
5  * @author Emmanuel Bernard
6  */

7 public enum OnDeleteAction {
8     /** the default */
9     NO_ACTION,
10     /** use cascade delete capabilities of the DD */
11     CASCADE
12 }
13
Popular Tags