package common; /** * ClientInterface interface * * @author Tinsae Ghilay * */ import java.rmi.Remote; import java.rmi.RemoteException; public interface ClientInterface extends Remote { void receiveMessage(String fromId, String message) throws RemoteException; }