Package com.google.checkout.notification

Examples of com.google.checkout.notification.ChargeAmountNotification


 
 
  public String process(MerchantConstants mc, String notificationMsg)
  throws CheckoutException {
    try {
      ChargeAmountNotification notification =
          new ChargeAmountNotification(notificationMsg);
      String ack = getAckString();
      GoogleOrder order = GoogleOrder.findOrCreate(mc.getMerchantId(),
          notification.getGoogleOrderNo());
      order.addIncomingMessage(notification.getTimestamp(), notification
          .getRootNodeName(), notification.getXmlPretty(), ack);
      return ack;
    } catch (Exception e) {
      throw new CheckoutException(e);
    }
  }
View Full Code Here


      return processor.process(notification);
    }
    if (notificationString.indexOf("charge-amount-notification") > -1) {
      ChargeAmountNotificationProcessor processor = new ChargeAmountNotificationProcessorImpl(
          mc);
      ChargeAmountNotification notification = new ChargeAmountNotification(
          notificationString);
      return processor.process(notification);
    }
    if (notificationString.indexOf("refund-amount-notification") > -1) {
      RefundAmountNotificationProcessor processor = new RefundNotificationProcessorImpl(
View Full Code Here

      return processor.process(notification);
    }
    if (notificationString.indexOf("charge-amount-notification") > -1) {
      ChargeAmountNotificationProcessor processor = new ChargeAmountNotificationProcessorImpl(
          mc);
      ChargeAmountNotification notification = new ChargeAmountNotification(
          notificationString);
      return processor.process(notification);
    }
    if (notificationString.indexOf("refund-amount-notification") > -1) {
      RefundAmountNotificationProcessor processor = new RefundNotificationProcessorImpl(
View Full Code Here

                    Debug.logError(e, module);
                    sendResponse(response, serialNumber, e);
                    return null;
                }
            } else if ("charge-amount-notification".equals(nodeValue)) {
                ChargeAmountNotification info = new ChargeAmountNotification(document);
                String serialNumber = info.getSerialNumber();
                try {
                    helper.processChargeNotification(info);
                    sendResponse(response, serialNumber, null);
                } catch (GeneralException e) {
                    Debug.logError(e, module);
                    sendResponse(response, serialNumber, e);
                    return null;
                }
            } else if ("chargeback-amount-notification".equals(nodeValue)) {
                ChargebackAmountNotification info = new ChargebackAmountNotification(document);
                String serialNumber = info.getSerialNumber();
                try {
                    helper.processChargeBackNotification(info);
                    sendResponse(response, serialNumber, null);
                } catch (GeneralException e) {
                    Debug.logError(e, module);
                    sendResponse(response, serialNumber, e);
                    return null;
                }
            } else if ("refund-amount-notification".equals(nodeValue)) {
                RefundAmountNotification info = new RefundAmountNotification(document);
                String serialNumber = info.getSerialNumber();
                try {
                    helper.processRefundNotification(info);
                    sendResponse(response, serialNumber, null);
                } catch (GeneralException e) {
                    Debug.logError(e, module);
View Full Code Here

TOP

Related Classes of com.google.checkout.notification.ChargeAmountNotification

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.