1 45 package org.openejb.core.transaction; 46 47 import javax.transaction.Transaction ; 48 49 import org.openejb.core.ThreadContext; 50 51 import java.util.Map ; 52 import java.util.HashMap ; 53 54 59 public class TransactionContext { 60 61 public Transaction clientTx; 62 public Transaction currentTx; 63 public ThreadContext callContext; 64 public final Map context = new HashMap (); 65 public TransactionContext(){ 66 } 67 68 public TransactionContext(ThreadContext callContext){ 69 this.callContext = callContext; 70 } 71 72 73 } 74 75 | Popular Tags |