-
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
Fields Modifier and Type Field and Description static int
MAXBQUALSIZE
Maximum number of bytes returned by getBqual.static int
MAXGTRIDSIZE
Maximum number of bytes returned by getGtrid.
-
Method Summary
Methods Modifier and Type Method and Description 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.
-
-
-
Field Detail
-
MAXGTRIDSIZE
static final int MAXGTRIDSIZE
Maximum number of bytes returned by getGtrid.- See Also:
- Constant Field Values
-
MAXBQUALSIZE
static final int MAXBQUALSIZE
Maximum number of bytes returned by getBqual.- See Also:
- Constant Field Values
-
-
Method Detail
-
getFormatId
int getFormatId()
Obtain the format identifier part of the XID.- Returns:
- Format identifier. O means the OSI CCR format.
-
getGlobalTransactionId
byte[] getGlobalTransactionId()
Obtain the global transaction identifier part of XID as an array of bytes.- Returns:
- Global transaction identifier.
-
getBranchQualifier
byte[] getBranchQualifier()
Obtain the transaction branch identifier part of XID as an array of bytes.- Returns:
- Global transaction identifier.
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/transaction/xa/xid.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.