| |
|
| javax.transaction.xa.Xid
Xid | public interface Xid (Code) | | An interface which provides a mapping for the X/Open XID transaction
identifier structure. The Xid interface is used by the Transaction Manager
and the Resource managers. It is not typically used by application programs.
|
Method Summary | |
public byte[] | getBranchQualifier() Gets the transaction branch qualifier component of the XID. | public int | getFormatId() Gets the format identifier component of the XID.
an integer containing the format identifier. | public byte[] | getGlobalTransactionId() Gets the global transaction identifier component of the XID. |
MAXBQUALSIZE | final public static int MAXBQUALSIZE(Code) | | The maximum number of bytes which will be returned by getBranchQualifier
|
MAXGTRIDSIZE | final public static int MAXGTRIDSIZE(Code) | | The maximum number of bytes which will be returned by
getGlobaltransaction Id
|
getBranchQualifier | public byte[] getBranchQualifier()(Code) | | Gets the transaction branch qualifier component of the XID.
an array of bytes containing the transaction branch qualifier. |
getFormatId | public int getFormatId()(Code) | | Gets the format identifier component of the XID.
an integer containing the format identifier. 0 means the OSI CCRformat. |
getGlobalTransactionId | public byte[] getGlobalTransactionId()(Code) | | Gets the global transaction identifier component of the XID.
an array of bytes containing the global transaction identifier. |
|
|
|