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 32 @Remote  33 public interface DeploymentDescriptorTesterRemote 34 { 35 void testStatelessWithTx() throws Exception ; 36 37 @TransactionAttribute (TransactionAttributeType.NOT_SUPPORTED) 38 void testStatelessWithoutTx() throws Exception ; 39 40 void testStatefulWithTx() throws Exception ; 41 42 @TransactionAttribute (TransactionAttributeType.NOT_SUPPORTED) 43 void testStatefulWithoutTx() throws Exception ; 44 } 45 | Popular Tags |