1 2 8 29 package org.jboss.test.deadlock.interfaces; 30 31 import javax.ejb.*; 32 import java.rmi.*; 33 34 35 public interface StatelessSession extends EJBObject { 36 37 public void callAB() throws RemoteException; 38 public void callBA() throws RemoteException; 39 public void requiresNewTest(boolean first) throws RemoteException; 40 public void createCMRTestData(String jndiName) throws RemoteException; 41 public void cmrTest(String jndiName, String start) throws RemoteException; 42 } 43 | Popular Tags |