Examples of CancelOrderElement


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

   * order cancellation
   */
  public Document cancelOrder(String orderNumber, String reason, String comment)
      throws ProtocolException {
    try {
      CancelOrderElement cancelRequest = _objectFact.createCancelOrderElement();
      cancelRequest.setGoogleOrderNumber(orderNumber);
      cancelRequest.setReason(reason);
      cancelRequest.setComment(comment);
      return convertToDOM(cancelRequest);
    } 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.