org.apache.geronimo.transaction.log
Class XidImpl2

java.lang.Object
  extended by org.apache.geronimo.transaction.log.XidImpl2
All Implemented Interfaces:
java.io.Serializable, javax.transaction.xa.Xid

public class XidImpl2
extends java.lang.Object
implements javax.transaction.xa.Xid, java.io.Serializable

Unique id for a transaction. This implementation is backed by a single byte buffer so can do less copying than one backed by several byte buffers for the different components.

Version:
$Rev: 984469 $ $Date: 2010-08-12 00:49:47 +0800 (Thu, 12 Aug 2010) $
See Also:
Serialized Form

Field Summary
 
Fields inherited from interface javax.transaction.xa.Xid
MAXBQUALSIZE, MAXGTRIDSIZE
 
Constructor Summary
XidImpl2(byte[] globalId)
          Constructor taking a global id (for the main transaction)
XidImpl2(int formatId, byte[] globalId, byte[] branch)
           
XidImpl2(javax.transaction.xa.Xid global, byte[] branch)
          Constructor for a branch id
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 byte[] getBranchQualifier()
           
 int getFormatId()
           
 byte[] getGlobalTransactionId()
           
 java.lang.Object getKey()
           
 int hashCode()
           
 void setKey(java.lang.Object key)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

XidImpl2

public XidImpl2(byte[] globalId)
Constructor taking a global id (for the main transaction)

Parameters:
globalId - the global transaction id

XidImpl2

public XidImpl2(javax.transaction.xa.Xid global,
                byte[] branch)
Constructor for a branch id

Parameters:
global - the xid of the global transaction this branch belongs to
branch - the branch id

XidImpl2

public XidImpl2(int formatId,
                byte[] globalId,
                byte[] branch)
Method Detail

getFormatId

public int getFormatId()
Specified by:
getFormatId in interface javax.transaction.xa.Xid

getGlobalTransactionId

public byte[] getGlobalTransactionId()
Specified by:
getGlobalTransactionId in interface javax.transaction.xa.Xid

getBranchQualifier

public byte[] getBranchQualifier()
Specified by:
getBranchQualifier in interface javax.transaction.xa.Xid

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

setKey

public void setKey(java.lang.Object key)

getKey

public java.lang.Object getKey()


Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.