This commit is contained in:
Lorenzo Iovino 2017-07-15 04:32:35 +02:00
parent 44a9e43cd4
commit 8eab4d97c1
23 changed files with 714 additions and 11795 deletions

View file

@ -1,5 +1,6 @@
package interfaces;
import javax.swing.*;
import java.rmi.Remote;
import java.rmi.RemoteException;
@ -10,4 +11,5 @@ import java.rmi.RemoteException;
public interface INotificationServer extends Remote {
void registerForCallback (INotificationClient ClientInterface) throws RemoteException;
void unregisterForCallback (INotificationClient ClientInterface) throws RemoteException;
void sendInvitations(String username, DefaultListModel<String> users) throws RemoteException;
}