Package com.ebay.sdk.call

Examples of com.ebay.sdk.call.GetCategory2CSCall


      return files;
    }
   
     private String getCurrentAttributeSystemVersion() throws ApiException, SdkException, Exception {
       GetCategory2CSCall api = new GetCategory2CSCall(apiContext);
        api.addDetailLevel(DetailLevelCodeType.RETURN_SUMMARY);
        api.getCategory2CS();
       
        return api.getReturnedAttributeSystemVersion()
     }
View Full Code Here


     * @throws SdkException
     * @throws Exception
     */
    public GetCategory2CSResponseType downloadCategoryCS(ApiContext asn, String catId) throws ApiException, SdkException, Exception {
      apiContext = asn;
      GetCategory2CSCall api = new GetCategory2CSCall(asn);
      api.setDetailLevel(new DetailLevelCodeType[] {DetailLevelCodeType.RETURN_ALL});
      if(catId != null) {
        api.setCategoryID(catId);
      }
      cats = api.getCategory2CS();    // make API call
      resp = api.getResponse();
      siteWideCharacteristicSets = resp.getSiteWideCharacteristicSets();
     
      return resp;
      }
View Full Code Here

TOP

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

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.