当前页面:
在线文档首页 >
Java Platform, Enterprise Edition v1.3.1 API Specifications
Java 2 Platform EE v1.3: Interface Xid - Java Platform, Enterprise Edition v1.3.1 API Specifications
javax.transaction.xa
Interface Xid
- public interface Xid
The Xid interface is a Java mapping of the X/Open transaction identifier
XID structure. This interface specifies three accessor methods to
retrieve a global transaction抯 format ID, global transaction ID,
and branch qualifier. The Xid interface is used by the transaction
manager and the resource managers. This interface is not visible to
the application programs.
Field Summary |
static int |
MAXBQUALSIZE
Maximum number of bytes returned by getBqual. |
static int |
MAXGTRIDSIZE
Maximum number of bytes returned by getGtrid. |
Method Summary |
byte[] |
getBranchQualifier()
Obtain the transaction branch identifier part of XID as an array
of bytes. |
int |
getFormatId()
Obtain the format identifier part of the XID. |
byte[] |
getGlobalTransactionId()
Obtain the global transaction identifier part of XID as an array
of bytes. |
MAXGTRIDSIZE
public static final int MAXGTRIDSIZE
- Maximum number of bytes returned by getGtrid.
MAXBQUALSIZE
public static final int MAXBQUALSIZE
- Maximum number of bytes returned by getBqual.
getFormatId
public int getFormatId()
- Obtain the format identifier part of the XID.
- Returns:
- Format identifier. O means the OSI CCR format.
getGlobalTransactionId
public byte[] getGlobalTransactionId()
- Obtain the global transaction identifier part of XID as an array
of bytes.
- Returns:
- Global transaction identifier.
getBranchQualifier
public byte[] getBranchQualifier()
- Obtain the transaction branch identifier part of XID as an array
of bytes.
- Returns:
- Global transaction identifier.