// Step 1. Create Interface: TimeStampIF.java // Note: interface must extend java.rmi.Remote public interface TimeStampIF extends java.rmi.Remote { // the single method to be implemented: getTimeStamp public String getTimeStamp() throws java.rmi.RemoteException; }