Package factories

Examples of factories.FabReservation.confirmerReservation()


    /* on essaie la confirmation, si l'identifiant passe
     * en parametre est invalide, on recoit une exception fabrique,
     * et on lance une exception metier.
     */
    try{
      fr.confirmerReservation(idReservation, dateLimite);
      //On shutdown pour être sur que les changements sont pris en compte
      gc.shutDown();
    }catch(ReservationInexistanteException rie){
      throw new ReservationInexistanteException("METIER: "+rie.getMessage());
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.