1 2 package test;3 4 import javax.ejb.CreateException ;5 import javax.ejb.EJBLocalHome ;6 import javax.ejb.FinderException ;7 8 9 /**10 * This is the local-home interface for EntityA enterprise bean.11 */12 public interface EntityALocalHome extends EJBLocalHome {13 14 EntityALocal findByPrimaryKey(String key) throws FinderException ;15 16 EntityALocal create(String key) throws CreateException ;17 18 19 }20