import java.rmi.Remote; import java.rmi.RemoteException; public interface RMIInterface extends Remote { public String halfMul(int number1, int number2) throws RemoteException; }