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