1   package testData.math;
2   
3   import java.rmi.Remote;
4   import java.rmi.RemoteException;
5   
6   public interface MathFace extends Remote {
7     public int add(int a, int b) throws RemoteException;
8   }
9