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 AddressHome extends EJBHome {
public AddressRemote create(String key, String addressId, String address,
String city, String state, String zip) throws RemoteException, CreateException;
public AddressRemote findByPrimaryKey(AddressPK primaryKey) throws RemoteException, FinderException;
public Collection findByKey(String key) throws RemoteException, FinderException;
public Collection findByCity(String city) throws RemoteException, FinderException;
}