Examples of UnarchiveOrderElement


Examples of com.google.checkout.schema._2.UnarchiveOrderElement

   * in the Google Checkout Merchant Center.
   * @param orderNumber Google Checkout-assigned order number
   */
  public Document unarchiveOrder(String orderNumber) throws ProtocolException {
    try {
      UnarchiveOrderElement unArchiveReqeust
          = _objectFact.createUnarchiveOrderElement();
      unArchiveReqeust.setGoogleOrderNumber(orderNumber);
      return convertToDOM(unArchiveReqeust);
    } catch (JAXBException jaxbEx) {
      throw new ProtocolException(jaxbEx.getMessage());
    }
  }
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.