| java.lang.Object org.apache.derby.impl.drda.DRDAXid
Constructor Summary | |
| DRDAXid(int formatid, byte[] globalid, byte[] branchid) |
Method Summary | |
public byte[] | getBranchQualifier() Obtain the transaction branch qualifier part of the Xid in a byte array. | public int | getFormatId() Obtain the format id part of the Xid.
Format identifier. | public byte[] | getGlobalTransactionId() Obtain the global transaction identifier part of XID as an array of
bytes. | public String | toString() |
DRDAXid | DRDAXid(int formatid, byte[] globalid, byte[] branchid)(Code) | | |
getBranchQualifier | public byte[] getBranchQualifier()(Code) | | Obtain the transaction branch qualifier part of the Xid in a byte array.
A byte array containing the branch qualifier of the transaction. |
getFormatId | public int getFormatId()(Code) | | Obtain the format id part of the Xid.
Format identifier. O means the OSI CCR format. |
getGlobalTransactionId | public byte[] getGlobalTransactionId()(Code) | | Obtain the global transaction identifier part of XID as an array of
bytes.
A byte array containing the global transaction identifier. |
|
|