import java.rmi.*; import javax.ejb.*; public interface HelloWorldCMPHome extends EJBHome { public HelloWorldCMP create(Integer no) throws RemoteException, CreateException; public HelloWorldCMP findByPrimaryKey(Integer primaryKey) throws RemoteException, FinderException; }