~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-annotations-3.4.0.GA/src/org/hibernate/annotations/CacheConcurrencyStrategy.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//$Id: CacheConcurrencyStrategy.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
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
 
}