Package com.arjuna.ats.arjuna.xa

Examples of com.arjuna.ats.arjuna.xa.XID


  }
  else
  {
      try
      {
    XID xid = new XID();
       
    xid.formatID = formatId;
    xid.gtrid_length = uidLen;

    /*
 
View Full Code Here


/* 205 */     return this._theXid;
/*     */   }
/*     */
/*     */   public final void copy(Xid xid)
/*     */   {
/* 210 */     this._theXid = new XID();
/*     */
/* 212 */     if (xid != null)
/*     */     {
/* 214 */       if ((xid instanceof XidImple)) {
/* 215 */         this._theXid.copy(((XidImple)xid)._theXid);
View Full Code Here

/*     */   {
/* 307 */     boolean result = false;
/*     */     try
/*     */     {
/* 311 */       if (this._theXid == null) {
/* 312 */         this._theXid = new XID();
/*     */       }
/* 314 */       this._theXid.formatID = os.unpackInt();
/* 315 */       this._theXid.gtrid_length = os.unpackInt();
/* 316 */       this._theXid.bqual_length = os.unpackInt();
/* 317 */       this._theXid.data = os.unpackBytes();
View Full Code Here

/*  74 */       throw new IllegalStateException();
/*     */     }
/*     */
/*     */     try
/*     */     {
/*  80 */       XID xid = new XID();
/*     */
/*  82 */       xid.formatID = formatId;
/*  83 */       xid.gtrid_length = uidLen;
/*     */
/*  89 */       System.arraycopy(nodeName, 0, xid.data, 0, nodeName.length);
View Full Code Here

TOP

Related Classes of com.arjuna.ats.arjuna.xa.XID

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.