import java.rmi.Remote; import java.rmi.RemoteException; public interface RMIInterface extends Remote { public int[] mult(int number) throws RemoteException; public String div(int number1) throws RemoteException; }