1 22 package org.jboss.ejb3.test.bmt; 23 24 import javax.ejb.TransactionAttribute ; 25 import javax.ejb.TransactionAttributeType ; 26 import javax.ejb.Remote ; 27 28 34 @Remote  35 public interface TesterRemote 36 { 37 void testStatelessWithTx() throws Exception ; 38 39 @TransactionAttribute (TransactionAttributeType.NOT_SUPPORTED) 40 void testStatelessWithoutTx() throws Exception ; 41 42 void testStatefulWithTx() throws Exception ; 43 44 @TransactionAttribute (TransactionAttributeType.NOT_SUPPORTED) 45 void testStatefulWithoutTx() throws Exception ; 46 } 47 | Popular Tags |