17 lines
277 B
Java
17 lines
277 B
Java
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;
|
|
|
|
}
|