1 import java.rmi.Remote;
2 import java.rmi.RemoteException;
3 import java.util.Date;
4
5 public interface Identifiable extends Remote {
6 public String getUser () throws RemoteException;
7 public String getHost () throws RemoteException;
8 public Date getDate () throws RemoteException;
9 }