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 TestingEntity enterprise bean.11 */12 public interface TestingEntityLocalHome extends EJBLocalHome {13 14 15 16 /**17 *18 */19 TestingEntityLocal findByPrimaryKey(String key) throws FinderException ;20 21 22 23 /**24 *25 */26 TestingEntityLocal create(String key) throws CreateException ;27 28 TestingEntityLocal createTest1() throws javax.ejb.CreateException ;29 30 31 }32