summaryrefslogtreecommitdiffstats
path: root/Dozentenmodulserver/src/server/ServerInterface.java
blob: bce713c04f678919977359b986aa3e4e7c9f8935 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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<String> getImages() throws RemoteException;
        public String getPathOfImage(String name) throws RemoteException;
        
}