X-Git-Url: https://git.piment-noir.org/?p=TD_SR.git;a=blobdiff_plain;f=TD3%2Fhotel%2FChaineHotelsInterface.java;h=590fb320b6c2b0876c1b287e28f9f0e48049b654;hp=d4c4af005d82fa8ff0792d925832e2215e8694ab;hb=321de3f1ad537e7f9c313326ac50c45f2b6e9b5b;hpb=3a8c8f1926734c79be64af8debbc807ee2eabb5e diff --git a/TD3/hotel/ChaineHotelsInterface.java b/TD3/hotel/ChaineHotelsInterface.java index d4c4af0..590fb32 100644 --- a/TD3/hotel/ChaineHotelsInterface.java +++ b/TD3/hotel/ChaineHotelsInterface.java @@ -1,21 +1,23 @@ -package hotel; - -import java.rmi.Remote; -import java.rmi.RemoteException; - - -/** - * Applications reparties - * TP - Exercice - * Chaine d'hotels - * - * Interface de la chaine d'hotel - * - * @author Toto - * @version 1.0 - */ -public interface ChaineHotelsInterface { //TODO completer la declaration - - //TODO completer l'interface - -} +package hotel; + +import java.rmi.Remote; +import java.rmi.RemoteException; + + +/** + * Applications reparties + * TP - Exercice + * Chaine d'hotels + * + * Interface de la chaine d'hotel + * + * @author Toto + * @version 1.0 + */ +public interface ChaineHotelsInterface extends Remote { + + public void reserver(); + public void annuler(); + public Infos lister(); + +}