package server; import java.rmi.*; import java.sql.ResultSet; import java.util.ArrayList; import java.util.List; 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; public boolean writeVLdata(String imagename, String firstname, String lastname,String university, String Mail, String Tel, String Fak, boolean license, boolean internet, int ram, int cpu) throws RemoteException; public List getImageList() throws RemoteException; public List getAllOS() throws RemoteException; }