/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/

package org.jboss.test.bmp.interfaces;

import java.rmi.RemoteException;
import java.util.Collection;
import javax.ejb.*;

public interface SimpleBMPHome
extends EJBHome
{
   public SimpleBMP create (int _id, String _name) 
      throws CreateException, RemoteException;

   public SimpleBMP createMETHOD (int _id, String _name) 
      throws CreateException, RemoteException;

   public SimpleBMP findByPrimaryKey (Integer _key) 
      throws FinderException, RemoteException;
      
   public Collection findAll ()
      throws FinderException, RemoteException; 

}