1 22 package org.jboss.test.invokers.interfaces; 23 24 import java.rmi.RemoteException ; 25 import java.util.Collection ; 26 import javax.ejb.*; 27 28 public interface SimpleBMPHome 29 extends EJBHome 30 { 31 public SimpleBMP create(int _id, String _name) 32 throws CreateException, RemoteException ; 33 34 public SimpleBMP findByPrimaryKey (Integer _key) 35 throws FinderException, RemoteException ; 36 37 } 38 | Popular Tags |