Files

14 lines
227 B
Java

package rmi_Awareness;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* Created by Giovanni on 01/12/2014.
*/
public interface HelloInterface extends Remote {
String sayhello() throws RemoteException;
}