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

public interface EntityHome extends EJBHome {
  public Entity create(String name) throws CreateException, RemoteException;
  public Entity create(long id, String name) throws CreateException, RemoteException;
  public Entity findByPrimaryKey(long key) throws RemoteException, FinderException;
}
