Commit | Line | Data |
---|---|---|
321de3f1 JB |
1 | package hotel; |
2 | ||
3 | import java.rmi.Remote; | |
4 | import java.rmi.RemoteException; | |
5 | ||
6 | ||
7 | /** | |
8 | * Applications reparties | |
9 | * TP - Exercice | |
10 | * Chaine d'hotels | |
11 | * | |
12 | * Interface de la chaine d'hotel | |
13 | * | |
14 | * @author Toto | |
15 | * @version 1.0 | |
16 | */ | |
17 | public interface ChaineHotelsInterface extends Remote { | |
18 | ||
19 | public void reserver(); | |
20 | public void annuler(); | |
21 | public Infos lister(); | |
22 | ||
23 | } |