com.guicedee.guicedpersistence.btm.BTMTransactionIsolation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guiced-persistence Show documentation
Show all versions of guiced-persistence Show documentation
A complete JPA 2.1 implementation for Standalone or EE Implementation. Enables Multiple Persistence units
with full JTA Support using BTM. Perfect for Guice implementations, test suites, and Guice enabled Web Applications or EAR Projects.
Requires JDK 8
package com.guicedee.guicedpersistence.btm;
/**
* Sets the transaction isolation for the pooled connections
*
* READ_COMMITED default
*/
public enum BTMTransactionIsolation
{
READ_COMMITTED,
READ_UNCOMMITTED,
REPEATABLE_READ,
SERIALIZABLE
}