Examples of SIPSResponseParm


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
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.