package addressbook.ejb;

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

public interface AddressEntry extends EJBObject {
   public String getName() throws RemoteException;
   public String getAddress() throws RemoteException;
   public String getCity() throws RemoteException;
   public void setAddress(String newAddress) throws RemoteException;
   public void setCity(String newCity) throws RemoteException;
}