1 package net.rmi.armi; 2 3 import java.rmi.Remote; 4 import java.rmi.RemoteException; 5 public interface RemoteHelloInterface extends Remote { 6 public String getMsg() throws RemoteException; 7 public void testGetMsg() throws RemoteException; 8 } 9