Guest User

Untitled

a guest
Apr 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. //***************************************
  2. // Verteilte Systeme Praktikum 7
  3. // 03.12.11 mteppner, vkoschmann
  4. // NewsServer Interface
  5. //***************************************
  6.  
  7. import java.rmi.Remote;
  8. import java.rmi.RemoteException;
  9. import java.util.Date;
  10.  
  11. public interface NewsServer extends Remote{
  12.    
  13.     public int login(String a) throws RemoteException;
  14.     public void create(String a, Date d, String n) throws RemoteException;
  15.     public String[] showNew(String a) throws RemoteException;
  16.  
  17. }
Add Comment
Please, Sign In to add comment