Package com.google.code.magja.service.category

Examples of com.google.code.magja.service.category.CategoryRemoteServiceImpl


   * @return the categoryRemoteService
   */
  public static CategoryRemoteService getCategoryRemoteService(
      SoapConfig soapConfig) {

    CategoryRemoteService categoryRemoteService = new CategoryRemoteServiceImpl();
    categoryRemoteService.setSoapClient(MagentoSoapClient
        .getInstance(soapConfig));

    ProductRemoteService productRemoteService = getProductRemoteService(
        soapConfig, categoryRemoteService);
    categoryRemoteService.setProductRemoteService(productRemoteService);

    return categoryRemoteService;
  }
View Full Code Here

TOP

Related Classes of com.google.code.magja.service.category.CategoryRemoteServiceImpl

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.