Uses of Interface
org.hibernate.transaction.TransactionFactory.Context

Packages that use TransactionFactory.Context
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
org.hibernate.jdbc This package abstracts the mechanism for dispatching SQL statements to the database, and implements interaction with JDBC. 
org.hibernate.transaction This package abstracts the underlying transaction mechanism (JTA or JDBC) and provides strategies for obtaining application server TransactionManagers. 
 

Uses of TransactionFactory.Context in org.hibernate.impl
 

Classes in org.hibernate.impl that implement TransactionFactory.Context
 class SessionImpl
          Concrete implementation of a Session, and also the central, organizing component of Hibernate's internal implementation.
 class StatelessSessionImpl
           
 

Uses of TransactionFactory.Context in org.hibernate.jdbc
 

Subinterfaces of TransactionFactory.Context in org.hibernate.jdbc
static interface JDBCContext.Context
           
 

Uses of TransactionFactory.Context in org.hibernate.transaction
 

Fields in org.hibernate.transaction declared as TransactionFactory.Context
protected  TransactionFactory.Context CMTTransaction.transactionContext
           
 

Methods in org.hibernate.transaction with parameters of type TransactionFactory.Context
 Transaction CMTTransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
 boolean CMTTransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
           
 Transaction JTATransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
          Begin a transaction and return the associated Transaction instance.
 boolean JTATransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
          Determine whether an underlying transaction is in progress.

Mainly this is used in determining whether to register a synchronization as well as whether or not to circumvent auto flushing outside transactions.

 Transaction JDBCTransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
 boolean JDBCTransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
           
 Transaction TransactionFactory.createTransaction(JDBCContext jdbcContext, TransactionFactory.Context context)
          Begin a transaction and return the associated Transaction instance.
 boolean TransactionFactory.isTransactionInProgress(JDBCContext jdbcContext, TransactionFactory.Context transactionContext, Transaction transaction)
          Determine whether an underlying transaction is in progress.
 

Constructors in org.hibernate.transaction with parameters of type TransactionFactory.Context
CacheSynchronization(TransactionFactory.Context ctx, JDBCContext jdbcContext, Transaction transaction, Transaction tx)
           
CMTTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
JDBCTransaction(JDBCContext jdbcContext, TransactionFactory.Context transactionContext)
           
JTATransaction(UserTransaction userTransaction, JDBCContext jdbcContext, TransactionFactory.Context transactionContext)