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

import Models.User;

public interface ServerInterface extends Remote
{
        public User getFtpUser() throws RemoteException;
        
        
}