1 22 package org.jboss.test.txpropiiop.interfaces.a; 23 24 import java.rmi.RemoteException ; 25 26 import javax.ejb.EJBObject ; 27 28 34 public interface SessionA extends EJBObject 35 { 36 void invokeSessionB() throws RemoteException ; 37 void testTxToNotSupported() throws RemoteException ; 38 void testTxToRequired() throws RemoteException ; 39 void testTxToSupports() throws RemoteException ; 40 void testTxToRequiresNew() throws RemoteException ; 41 void testTxToMandatory() throws RemoteException ; 42 void testTxToNever() throws RemoteException ; 43 void testNoTxToNotSupported() throws RemoteException ; 44 void testNoTxToRequired() throws RemoteException ; 45 void testNoTxToSupports() throws RemoteException ; 46 void testNoTxToRequiresNew() throws RemoteException ; 47 void testNoTxToMandatory() throws RemoteException ; 48 void testNoTxToNever() throws RemoteException ; 49 } 50 | Popular Tags |