1 2 package test;3 4 import java.io.IOException ;5 import java.rmi.RemoteException ;6 import javax.ejb.CreateException ;7 import javax.ejb.EJBHome ;8 import javax.ejb.FinderException ;9 10 11 /**12 * This is the home interface for TestingEntity enterprise bean.13 */14 public interface TestingEntityRemoteHome extends EJBHome {15 16 17 18 /**19 *20 */21 TestingEntityRemote findByPrimaryKey(String key) throws FinderException , RemoteException ;22 23 24 25 /**26 *27 */28 TestingEntityRemote create(String key) throws CreateException , RemoteException ;29 30 TestingEntityRemote createTest2(String a, int b) throws CreateException , IOException , RemoteException ;31 32 String homeTestMethod1() throws RemoteException ;33 34 TestingEntityRemote findByTest3(String a) throws javax.ejb.FinderException , java.rmi.RemoteException ;35 36 37 }38