import java.rmi.RemoteException; import java.rmi.server.UnicastRemoteObject; public class Bonjour extends UnicastRemoteObject implements BonjourInterface { private String message; public Bonjour(String msg) throws RemoteException { message = msg; } public String direBonjour() throws RemoteException { return message; } }