1 22 package org.jboss.test.testbyvalue.interfaces; 23 24 import javax.ejb.*; 25 import java.rmi.*; 26 27 30 public interface RootStatelessSession extends EJBObject { 31 public long doTestByValue(int iterations) throws RemoteException, Exception ; 32 public long doTestByReference(int iterations) throws RemoteException, Exception ; 33 public long doTestEntity(int iterations) throws RemoteException, Exception ; 34 public long doTestEntityByReference(int iterations) throws RemoteException, Exception ; 35 36 } 37 | Popular Tags |