1 2 package test;3 4 import java.rmi.RemoteException ;5 import javax.ejb.CreateException ;6 import javax.ejb.EJBHome ;7 8 9 /**10 * This is the home interface for TestingSession enterprise bean.11 */12 public interface TestingSessionRemoteHome extends EJBHome {13 14 15 16 /**17 *18 */19 TestingSessionRemote create() throws CreateException , RemoteException ;20 21 22 }23