/* File Name: Clientacceptor.java */ package explorer.client; import java.rmi.*; import java.util.*; import explorer.*; import com.sun.xml.tree.*; /** * Interface that contains methods * to Authenticate the remote user, * to list the Roots, * to list the files in the given path */ public interface ClientAcceptor extends Remote { public boolean checkAuthenticate(String username,String password,String domain) throws RemoteException; public String getRoots()throws RemoteException ; public String listFiles(String path) throws RemoteException ; }