Package com.ebay.sdk.call

Examples of com.ebay.sdk.call.GetProductFinderXSLCall


   * @throws SdkException
   * @throws Exception
   */
  public void downloadProductFinderXsl(ApiContext apiContext) throws SdkException, Exception {
  this.apiContext = apiContext;
  GetProductFinderXSLCall pfl = new GetProductFinderXSLCall(apiContext);
    pfl.setDetailLevel(new DetailLevelCodeType[]{DetailLevelCodeType.RETURN_ALL});

    XSLFileType[] xslFiles = pfl.getProductFinderXSL();
    if( xslFiles.length > 0 ) {
      xslString = xslFiles[0].getFileContent();
      xslDoc = XmlUtil.createDom(xslString);
    }
  }
View Full Code Here

TOP

Related Classes of com.ebay.sdk.call.GetProductFinderXSLCall

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.