9 lines
234 B
Java
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;
|
|
}
|