1 package org.astrogrid.security.sample; 2 3 import java.rmi.Remote; 4 import java.rmi.RemoteException; 5 6 public interface SamplePortType extends Remote { 7 8 public String whoAmI () throws RemoteException; 9 10 }