Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: $
2
package org.hibernate.annotations;
3
 
4
/**
5
 * When should the generation occurs
6
 *
7
 * @author Emmanuel Bernard
8
 */
9
public enum GenerationTime {
10
        NEVER,
11
        INSERT,
12
        ALWAYS
13
}