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