Package PayPalAPI.api.ebay

Examples of PayPalAPI.api.ebay.DoCaptureReq


   * @throws SOAPException
   */
  public static final DoCaptureResponseType doCapture(DoCaptureRequestType _request, APICredential _credentials) throws RemoteException {
    long startTime = System.currentTimeMillis();
    validateRequest(_request);
    DoCaptureResponseType response = getAPIAAInterface(_credentials).doCapture(new DoCaptureReq(_request));
    processResponse(response);
    long endTime = System.currentTimeMillis();
    logMessage(startTime, endTime, response, "API.doCapture");
    return response;
  }
View Full Code Here

TOP

Related Classes of PayPalAPI.api.ebay.DoCaptureReq

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.