HRInterface.java (399B)
1 import java.rmi.Remote; 2 import java.rmi.RemoteException; 3 4 public interface HRInterface extends Remote { 5 String list() throws RemoteException; 6 String book(String type, int num, String name) throws RemoteException; 7 String guests() throws RemoteException; 8 String cancel(String type, int num, String name) throws RemoteException; 9 void addListSub(String name, String type) throws RemoteException; 10 }