package addressbook.ejb;
import java.rmi.*;
import java.util.*;
import javax.ejb.*;
public interface AddressBook extends EJBHome {
public AddressEntry create(String name, String address, String city)
throws CreateException, RemoteException;
public AddressEntry findByPrimaryKey(String name)
throws FinderException, RemoteException;
public Collection findAll()
throws FinderException, RemoteException;
}