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
 * Enumeration for the different interaction modes between the session and
5
 * the Level 2 Cache.
6
 *
7
 * @author Emmanuel Bernard
8
 * @author Carlos González-Cadenas
9
 */
10
 
11
public enum CacheModeType {
12
        GET,
13
        IGNORE,
14
        NORMAL,
15
        PUT,
16
        REFRESH
17
}