RMI callback for manage the invitations

This commit is contained in:
Lorenzo Iovino 2017-06-19 19:32:54 +02:00
parent cedaf8f009
commit c54393c2b9
43 changed files with 2060 additions and 556 deletions

View file

@ -0,0 +1,15 @@
package interfaces;
import models.Response;
import javax.swing.*;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* Created by loke on 19/06/2017.
*/
public interface INotificationClient extends Remote{
Response sendInvite(String userName, DefaultListModel<String> users) throws RemoteException;
}