Package org.xrace.service.paiement

Examples of org.xrace.service.paiement.Desjardins3Service


    ApplicationContext appCtx = WebApplicationContextUtils
        .getWebApplicationContext(getServletContext());

    //Recherche du bean qui va faire le travail. On peut trouver n'importe quel bean défini
    //dans Spring.
    Desjardins3Service desjardins3Service = (Desjardins3Service) appCtx
        .getBean("desjardins3Service");

    //Appel de la méthode qui fait le travail. Il faut se limiter à une méthode pour que le tout
    //se fait dans le contexte d'une seule transaction BD.
    String response = desjardins3Service.processReturnDialog(request);

    if (log.isDebugEnabled())
    {
      log.debug("Sending response.  \n" + response);
    }
View Full Code Here

TOP

Related Classes of org.xrace.service.paiement.Desjardins3Service

Copyright © 2018 www.massapicom. 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.