KickJava   Java API By Example, From Geeks To Geeks.

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


1 //$Id: CacheConcurrencyStrategy.java,v 1.1 2005/04/01 00:32:23 epbernard Exp $
2
package org.hibernate.annotations;
3
4 /**
5  * Cache concurrency strategy
6  * @author Emmanuel Bernard
7  */

8 public enum CacheConcurrencyStrategy {
9     NONE,
10     READ_ONLY,
11     NONSTRICT_READ_WRITE,
12     READ_WRITE,
13     TRANSACTIONAL
14 }
15
Popular Tags