1 22 package org.jboss.test.iiop.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.CreateException ; 26 import javax.ejb.EJBHome ; 27 28 32 public interface StatelessSessionHome 33 extends EJBHome  34 { 35 public static final String COMP_NAME = "java:comp/env/ejb/IIOPSession"; 36 public static final String JNDI_NAME = "IIOPSession"; 37 38 public StatelessSession create() throws CreateException , RemoteException ; 39 } 40 | Popular Tags |