1 22 package org.jboss.ejb3.test.bmt; 23 24 import javax.transaction.Transaction ; 25 26 32 public interface StatefulLocal 33 { 34 Transaction beginNoEnd() throws Exception ; 35 36 void endCommit(Transaction old) throws Exception ; 37 38 void endRollback(Transaction old) throws Exception ; 39 40 void beginCommitEnd() throws Exception ; 41 42 void beginRollbackEnd() throws Exception ; 43 } 44 | Popular Tags |