Package com.atosorigin.services.cad.apipayment

Examples of com.atosorigin.services.cad.apipayment.SIPSResponseParm


  public PaymentInfo validatePayment(String cypheredtxt) throws ServiceException {
    try {
      LOGGER.info("CA call preparation for payment validation");
      SIPSApiWeb api = new SIPSApiWeb(getPaymentInitFile());
      // Initialisation de l'objet reponse
      SIPSDataObject resp = (SIPSDataObject) new SIPSResponseParm();
      // Recuperation de la variable cryptee postee
      // Decryptage de la reponse
      resp = api.sipsPaymentResponseFunc(cypheredtxt);   
      String orderId = resp.getValue("order_id");
      LOGGER.debug("orderId ="+orderId);
View Full Code Here

TOP

Related Classes of com.atosorigin.services.cad.apipayment.SIPSResponseParm

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.