package Fileserver;

import java.rmi.*;


public interface MyFS extends Nameserver.MyBase{
  public String getMyName()throws RemoteException;
  public int getMyType()throws RemoteException;
  public String readFile(String $filename)throws RemoteException;
}