1 43 package org.objectweb.jotm; 44 45 import java.io.Serializable ; 46 47 59 public interface TransactionContext extends Serializable { 60 61 66 public int getTimeout(); 67 68 73 public Coordinator getCoordinator(); 74 75 80 public void setCoordinator(Coordinator c); 81 82 87 public Terminator getTerminator(); 88 89 94 public void setTerminator(Terminator t); 95 96 101 public Control getControl(); 102 103 108 public org.objectweb.jotm.Xid getXid(); 109 110 115 public void setNotJotmCtx(); 116 117 122 public boolean isJotmCtx(); 123 124 } 125 | Popular Tags |