A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
The XAXactId class is a specific implementation of the JTA Xid interface. It is only used by the TransactionTable.restore() interface to return an array of Xid's back to the caller, as part of serving the XAresource.restore() interface. It is NOT the object that is stored in the log. One reason for ...
{
if (xid != null) {
boolean local = ( xid.getFormatId() == -1);
if (!local) {
try {
XAXactId xid_im = new XAXactId(xid);
getResourceAdapter().cancelXATransaction(
xid_im,
MessageId.CONN_CLOSE_XA_TRANSACTION_ROLLED_BACK
);
} catch (XAException e) {