package server; import java.rmi.*; import java.sql.ResultSet; import java.util.ArrayList; import Models.User; public interface ServerInterface extends Remote { public User getFtpUser() throws RemoteException; public int DeleteFtpUser(String user) throws RemoteException; public ArrayList getImages() throws RemoteException; public String getPathOfImage(String name) throws RemoteException; }