public interface

TransactionManagerLookup

org.hibernate.transaction.TransactionManagerLookup
Known Indirect Subclasses

Class Overview

Contract for locating the JTA TransactionManager on given platform.

NOTE: this contract has expanded over time, and basically is a platform abstraction contract for JTA-related information.

Summary

Public Methods
abstract Object getTransactionIdentifier(Transaction transaction)
Determine an identifier for the given transaction appropriate for use in caching/lookup usages.
abstract TransactionManager getTransactionManager(Properties props)
Obtain the JTA TransactionManager.
abstract String getUserTransactionName()
Return the JNDI namespace of the JTA javax.transaction.UserTransaction for this platform or null; optional operation.

Public Methods

public abstract Object getTransactionIdentifier (Transaction transaction)

Determine an identifier for the given transaction appropriate for use in caching/lookup usages.

Generally speaking the transaction itself will be returned here. This method was added specifically for use in WebSphere and other unfriendly JEE containers (although WebSphere is still the only known such brain-dead, sales-driven impl).

Parameters
transaction The transaction to be identified.
Returns
  • An appropropriate identifier

public abstract TransactionManager getTransactionManager (Properties props)

Obtain the JTA TransactionManager.

Parameters
props The configuration properties.
Returns
  • The JTA TransactionManager.
Throws
HibernateException Indicates problem locating TransactionManager.

public abstract String getUserTransactionName ()

Return the JNDI namespace of the JTA javax.transaction.UserTransaction for this platform or null; optional operation.

Returns
  • The JNDI namespace where we can locate the javax.transaction.UserTransaction for this platform.