Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
package org.hibernate.annotations;
2
 
3
/**
4
 * Possible actions on deletes
5
 *
6
 * @author Emmanuel Bernard
7
 */
8
public enum OnDeleteAction {
9
        /**
10
         * the default
11
         */
12
        NO_ACTION,
13
        /**
14
         * use cascade delete capabilities of the DD
15
         */
16
        CASCADE
17
}