TD3: convert to unix LF the code skeleton for hostels.
[TD_SR.git] / TD3 / hotel / ChaineHotelsInterface.java
CommitLineData
321de3f1
JB
1package hotel;
2
3import java.rmi.Remote;
4import 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 */
17public interface ChaineHotelsInterface extends Remote {
18
19 public void reserver();
20 public void annuler();
21 public Infos lister();
22
23}