View Javadoc
1 /*** 2 * Created by Nicolas FRANK 3 * @mail: nicolas.frank@laposte.net 4 * Date: Oct 22, 2002 5 * Time: 10:21:10 AM 6 */ 7 package remoteTester.runner.server.interfaces; 8 9 import javax.ejb.CreateException; 10 import javax.ejb.EJBHome; 11 import java.rmi.RemoteException; 12 13 /*** 14 * EJB Remote Home 15 */ 16 public interface TestRunnerRemoteHome extends EJBHome { 17 /*** 18 * create TestRunnerRemote reference 19 * 20 * @return a TestRunnerRemote reference 21 * @throws CreateException if the reference can't be created (usually because you don't have server client classes) 22 * @throws RemoteException if anything goes wrong on the network connection 23 */ 24 public TestRunnerRemote create() throws CreateException, RemoteException; 25 }

This page was automatically generated by Maven