package org.jboss.test.readahead.interfaces;
import java.util.Collection;
import java.rmi.RemoteException;
import javax.ejb.EJBHome;
import javax.ejb.CreateException;
import javax.ejb.FinderException;
public interface CMPFindTestEntityHome extends EJBHome {
public CMPFindTestEntityRemote create(String key) throws RemoteException, CreateException;
public CMPFindTestEntityRemote findByPrimaryKey(String primaryKey) throws RemoteException, FinderException;
public Collection findAll() throws RemoteException, FinderException;
public Collection findByCity(String city) throws RemoteException, FinderException;
}