Class NoJtaPlatform
java.lang.Object
org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform
- All Implemented Interfaces:
Serializable,JtaPlatform,Service
The non-configured form of JTA platform. This is what is used if none was set up.
- Author:
- Steve Ebersole
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanCan we currently register aSynchronization?intObtain the current transaction status using whatever means is preferred for this platform@Nullable ObjectgetTransactionIdentifier(Transaction transaction) Determine an identifier for the given transaction appropriate for use in caching/lookup usages.voidregisterSynchronization(Synchronization synchronization) Register a JTASynchronizationin the means defined by the platform.@Nullable TransactionManagerLocate theTransactionManager.@Nullable UserTransactionLocate theUserTransaction.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
NoJtaPlatform
public NoJtaPlatform()
-
-
Method Details
-
retrieveTransactionManager
Description copied from interface:JtaPlatformLocate theTransactionManager.- Specified by:
retrieveTransactionManagerin interfaceJtaPlatform- Returns:
- The
TransactionManager
-
retrieveUserTransaction
Description copied from interface:JtaPlatformLocate theUserTransaction.If
TransactionSettings.PREFER_USER_TRANSACTIONis enabled, Hibernate will use theUserTransactionin preference to theTransactionManagerwhere possible.- Specified by:
retrieveUserTransactionin interfaceJtaPlatform- Returns:
- The
UserTransaction
-
getTransactionIdentifier
Description copied from interface:JtaPlatformDetermine 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 Java EE containers.
- Specified by:
getTransactionIdentifierin interfaceJtaPlatform- Parameters:
transaction- The transaction to be identified.- Returns:
- An appropriate identifier
-
registerSynchronization
Description copied from interface:JtaPlatformRegister a JTASynchronizationin the means defined by the platform.- Specified by:
registerSynchronizationin interfaceJtaPlatform- Parameters:
synchronization- The synchronization to register
-
canRegisterSynchronization
public boolean canRegisterSynchronization()Description copied from interface:JtaPlatformCan we currently register aSynchronization?- Specified by:
canRegisterSynchronizationin interfaceJtaPlatform- Returns:
- True if registering a
Synchronizationis currently allowed; false otherwise.
-
getCurrentStatus
Description copied from interface:JtaPlatformObtain the current transaction status using whatever means is preferred for this platform- Specified by:
getCurrentStatusin interfaceJtaPlatform- Returns:
- The current status.
- Throws:
SystemException- Indicates a problem access the underlying status
-