Examples of ArchiveOrderElement


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

   * delivered.
   * @param orderNumber Google Checkout-assigned order number
   */
  public Document archiveOrder(String orderNumber) throws ProtocolException {
    try {
      ArchiveOrderElement archiveRequest
          = _objectFact.createArchiveOrderElement();
      archiveRequest.setGoogleOrderNumber(orderNumber);
      return convertToDOM(archiveRequest);
    } 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.