1 22 package org.jboss.test.threading.interfaces; 23 24 import java.rmi.*; 25 import javax.ejb.*; 26 27 public interface EJBThreads extends EJBObject 28 { 29 30 public void test() throws RemoteException; 31 public void testBusinessException() throws RemoteException; 32 public void testRuntimeException() throws RemoteException; 33 public void testTimeOut() throws RemoteException; 34 public void testNonTransactional() throws RemoteException; 35 36 } 37 | Popular Tags |