1 22 package org.jboss.ejb3.test.stateful; 23 24 25 26 32 public interface StatefulTx extends RemoteTx<State> 33 { 34 boolean isGlobalTransacted() throws javax.transaction.SystemException ; 35 36 boolean isLocalTransacted() throws javax.transaction.SystemException ; 37 38 boolean testNewTx() throws javax.transaction.SystemException ; 39 40 void testTxRollback(); 41 } 42 | Popular Tags |