Examples of NotificationHistoryRequest


Examples of com.google.checkout.sdk.domain.NotificationHistoryRequest

   * @param serialNumber The serial number of the notification to fetch.
   * @return The notification corresponding to the serial number.
   * @throws CheckoutException If underlying communication throws an exception.
   */
  public Notification requestNotification(String serialNumber) throws CheckoutException {
    NotificationHistoryRequest request = new NotificationHistoryRequest();
    request.setSerialNumber(serialNumber);
    // this is a specific notification domain object.
    return (Notification)postRequest(request.toJAXB());
  }
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.