import java.rmi.*;
import java.util.*;

public interface TimeServer extends Remote 
{
	public Date time() throws java.rmi.RemoteException;
}

