Examples of Journalisation


Examples of fr.aston.gestionconges.utilitaires.Journalisation

    ServiceDemandeCongesImpl serviceDemandeConges=new ServiceDemandeCongesImpl();
    Employe employe = new Employe();
    employe.setIdUtilisateur(2);
    List<DemandeConges> ldc = serviceDemandeConges.listerDemandesByUser(employe);
//System.out.println(ldc);
    Journalisation log = new Journalisation();
    log.logWithParameters("testListerDemandeConges :employe ", employe);
    log.logWithParameters("testListerDemandeConges : ldc", ldc);
   
    logger.debug(ldc);
   
   
  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

    ServiceDemandeCongesImpl serviceDemandeConges=new ServiceDemandeCongesImpl();
    Employe employe = new Employe();
    employe.setIdUtilisateur(2);
    List<DemandeConges> ldc = serviceDemandeConges.listerDemandesByUser(employe);
//System.out.println(ldc);
    Journalisation log = new Journalisation();
    log.logWithParameters("testListerDemandeConges :employe ", employe);
    log.logWithParameters("testListerDemandeConges : ldc", ldc);
   
    logger.debug(ldc);
   
   
  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

   
    Employe employe = new Employe();
    employe.setIdUtilisateur(2);
    List<DemandeConges> ldc = getFactory().getServiceDemandes().listerDemandesByUser(employe);
//System.out.println(ldc);
    Journalisation log = new Journalisation();
    log.logWithParameters("testListerDemandeConges :employe ", employe);
    log.logWithParameters("testListerDemandeConges : ldc", ldc);
   
    logger.debug(ldc);
   
   
  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

  public void testConsulterInfoUserByDemande() {
    //1. On r�cup�re une demande existante
    ServiceDemandeCongesImpl serviceDemandeConges=new ServiceDemandeCongesImpl();
        InfoDemandeUserDto idudto =  serviceDemandeConges.consulterInfoUserByDemande(1);

    Journalisation log = new Journalisation();
    log.logWithParameters("testConsulterInfoUserByDemande :idudto ", idudto);

   
    // logger.debug(idudto);
   
   
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

  public void testFactoryServicesConsulterInfoUserByDemande() {
    //1. On r�cup�re une demande existante
   
        InfoDemandeUserDto idudto =  getFactory().getServiceDemandes().consulterInfoUserByDemande(1);

    Journalisation log = new Journalisation();
    log.logWithParameters("testConsulterInfoUserByDemande :idudto ", idudto);

   
    // logger.debug(idudto);
   
   
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

    e.printStackTrace();
  }

  public BusinessGestionCongesException(String message) {
    // TODO Auto-generated constructor stub
    Journalisation j = new Journalisation ();
    j.logSimple(message);
  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

public class ServiceMockDemandeCongesImpl implements IServiceDemandeConges {

  public InfoDemandeUserDto consulterInfoUserByDemande(int idDemande) {
    // TODO Auto-generated method stub
    Journalisation j=new Journalisation();
    j.logWithParameters("consulterInfoUserByDemande", idDemande);
   
    return null;
  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

    return null;
  }

  public void enregistrerDemandeConges(DemandeConges demande) {
    // TODO Auto-generated method stub
    Journalisation j=new Journalisation();
    j.logWithParameters("enregistrerDemandeConges", demande);

  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

  }

  public DemandeConges lireDemandeConges(int idDemande) {
    // TODO Auto-generated method stub
   
    Journalisation j=new Journalisation();
    j.logWithParameters("lireDemandeConges", idDemande);
    return null;
  }
View Full Code Here

Examples of fr.aston.gestionconges.utilitaires.Journalisation

    return null;
  }

  public List<DemandeConges> listerDemandesByUser(Employe employe) {
    // TODO Auto-generated method stub
    Journalisation j=new Journalisation();
    j.logWithParameters("listerDemandesByUser", employe);
    return null;
  }
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.