summaryrefslogtreecommitdiffstats
path: root/Dozentenmodulserver/src/server/ServerInterface.java
blob: 6ae6e529b006b72a9956fd93ceb27be31202abcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package server;
import java.rmi.*;

import Models.User;

public interface ServerInterface extends Remote
{
        public User getFtpUser() throws RemoteException;
        public int DeleteFtpUser(String user) throws RemoteException;
        
        
}