Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: CacheConcurrencyStrategy.java 11282 2007-03-14 22:05:59Z epbernard $
2
package org.hibernate.annotations;
3
 
4
/**
5
 * Cache concurrency strategy
6
 *
7
 * @author Emmanuel Bernard
8
 */
9
public enum CacheConcurrencyStrategy {
10
        NONE,
11
        READ_ONLY,
12
        NONSTRICT_READ_WRITE,
13
        READ_WRITE,
14
        TRANSACTIONAL
15
}