Package com.google.checkout.sdk.domain

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


   * @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

Related Classes of com.google.checkout.sdk.domain.NotificationHistoryRequest$NotificationTypes

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.