-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthServer.java
52 lines (43 loc) · 1.74 KB
/
AuthServer.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package server;
import java.rmi.MarshalledObject;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.io.IOException;
/**
* Interfaccia del server di autenticazione verso i client.
*
* @author Pietro Musoni
* @author Carlo Tacchella
*/
public interface AuthServer extends Remote {
/**
* Esegue il login di un client e ritorna un MobileServer.
*
* @param username
* @param password
* @return un MobileServer che il client esegue se il login ha successo, <code>null</code> altrimenti.
* @throws RemoteException nel caso di problemi di comunicazione client\server.
* @throws ClassNotFoundException nel caso in cui non trovi la classe da spedire al client.
*/
public MarshalledObject<?> login(String username, char[] password)
throws RemoteException,ClassNotFoundException;
public boolean isAdmin(String username, char[] givenPassword)
throws IOException;
public boolean isUser(String username, char[] givenPassword)
throws IOException;
public void newFileAdmin() throws RemoteException;
public void newFileUser() throws RemoteException;
public boolean newAdmin(String nomeCercato, char[] passwordCercata) throws IOException;
public boolean newUser(String nomeCercato, char[] passwordCercata) throws IOException;
/**
* Registra un utente nel sistema.
*
* @param username
* @param password
* @param type - tipologia dei client: 0 utenti, 1 amministratori.
* @return <code>true</code> se la registrazione e' andata a buon fine, <code>false</code> altrimenti.
* @throws RemoteException nel caso di problemi di comunicazione client\server.
*/
public boolean registerUser(String username, char[] password, int type)
throws RemoteException, IOException;
}