// Project 1 for CMSC 838P // Charles B. Cranston xxx-xx-xxxx // April 8, 1997 // Democratic chat system import java.rmi.RemoteException; public interface PhoneAPI extends java.rmi.Remote { public PhoneAPI[] apply(PhoneAPI[] newbies) throws RemoteException; public void sponsor(PhoneAPI[] newbies) throws RemoteException; public void resign(PhoneAPI caller) throws RemoteException; public void transfer(PhoneAPI from, Object thing) throws RemoteException; public String identify() throws RemoteException; }