1 /* 2 * Created by IntelliJ IDEA. 3 * User: lyon 4 * Date: Jun 29, 2002 5 * Time: 5:56:49 AM 6 */ 7 package net.rmi.rmiSynth; 8 9 import java.rmi.RemoteException; 10 11 public interface HostManagerInterface 12 extends java.rmi.Remote { 13 public void add(Host h) 14 throws RemoteException; 15 16 public Host getNextHost() 17 throws RemoteException; 18 19 public Host[] getHosts() 20 throws RemoteException; 21 } 22