Files
2025-01-21 10:13:14 +00:00

9 lines
234 B
Java

// Remote Object has a single method that is passed
// the name of a country and returns the capital city.
import java.rmi.*;
public interface CityServer extends Remote
{
String getCapital(String Country) throws RemoteException;
}