1 2 package first;3 4 import javax.ejb.CreateException ;5 import javax.ejb.EJBLocalHome ;6 7 8 /**9 * This is the local-home interface for FirstSession enterprise bean.10 */11 public interface FirstSessionLocalHome extends EJBLocalHome {12 13 FirstSessionLocal create() throws CreateException ;14 15 16 }17