1 18 package org.objectweb.speedo.jca; 19 20 import org.objectweb.speedo.pm.api.ProxyManager; 21 import javax.transaction.xa.Xid ; 22 23 29 public class XAContext { 30 35 public final static byte UNKNOWN = -1; 36 37 42 public final static byte STARTED = 1; 43 44 49 public final static byte ENDED = 2; 50 51 56 public final static byte PREPARED = 3; 57 58 61 public Xid xid = null; 62 63 66 public ProxyManager pm = null; 67 68 72 public byte status = UNKNOWN; 73 74 78 public boolean synchroRegistred = false; 79 80 public XAContext(Xid xid) { 81 this.xid = xid; 82 } 83 } 84 | Popular Tags |