Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.6)

Part Number E13941-06

weblogic.transaction
Interface InterposedTransactionManager


public interface InterposedTransactionManager

InterposedTransactionManager is used by a bi-directional gateway for importing foreign transactions into WLS. Gateway implementors obtain a XAResource interface from the WLS Transaction Manager to import foreign transactions into WLS, and to coordinate the foreign transactions.

InterposedTransactionManager is available via JNDI lookup under the path of "weblogic.transaction.coordinators." and from weblogic.transaction.TxHelper.

Note that we do not yet support importing the same foreign transaction into different WLS domains via our Client InterposedTransactionManager.

See Also:
weblogic.transaction.TxHelper.ClientInterposedTransactionManager, weblogic.transaction.TxHelper.ServerInterposedTransactionManager

Method Summary
 Transaction getTransaction()
          Gets the transaction object that is associated with the current thread
 Transaction getTransaction(Xid xid)
          Given an Xid returns the corresponding transaction object, if any
 XAResource getXAResource()
          Obtains the XAResource object associated with this Transaction Manager instance
 

Method Detail

getXAResource

XAResource getXAResource()
Obtains the XAResource object associated with this Transaction Manager instance

Returns:
the XAResource interface implemented by the WLS Transaction Manager. It is used by the gateway for subsequent import and coordination of the foreign transactions.

getTransaction

Transaction getTransaction()
Gets the transaction object that is associated with the current thread

return The transaction object that is associated with the current thread


getTransaction

Transaction getTransaction(Xid xid)
Given an Xid returns the corresponding transaction object, if any

Parameters:
xid - Specifies the Xid, whether it is a foreign Xid or a WLS Xid
Returns:
The transaction object that is associated with the given Xid

Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.6)

Part Number E13941-06