1 22 package org.jboss.test.cts.interfaces; 23 24 25 import java.rmi.RemoteException ; 26 import javax.ejb.CreateException ; 27 import javax.ejb.EJBHome ; 28 29 34 public interface StatefulSessionHome 35 extends EJBHome  36 { 37 public StatefulSession create(String testName) 38 throws RemoteException , CreateException ; 39 45 public StatefulSession createAlt(String testName) 46 throws RemoteException , CreateException ; 47 } 48 49 | Popular Tags |