Uses of Interface
com.elasticpath.domain.catalog.Category

Packages that use Category
com.elasticpath.cmweb.ajaxbean   
com.elasticpath.cmweb.ajaxbean.impl   
com.elasticpath.domain.catalog   
com.elasticpath.domain.catalog.impl   
com.elasticpath.domain.catalogview   
com.elasticpath.domain.catalogview.browsing   
com.elasticpath.domain.catalogview.browsing.impl   
com.elasticpath.domain.catalogview.impl   
com.elasticpath.domain.rules   
com.elasticpath.domain.rules.impl   
com.elasticpath.domain.shoppingcart   
com.elasticpath.domain.shoppingcart.impl   
com.elasticpath.service.catalog   
com.elasticpath.service.catalog.impl   
com.elasticpath.service.dataimport   
com.elasticpath.service.dataimport.impl   
com.elasticpath.service.misc   
com.elasticpath.service.misc.impl   
 

Uses of Category in com.elasticpath.cmweb.ajaxbean
 

Methods in com.elasticpath.cmweb.ajaxbean that return Category
 Category CategoryAjaxBean.getCategory()
          Get the domain model object representing a category.
 

Methods in com.elasticpath.cmweb.ajaxbean with parameters of type Category
 void CategoryAjaxBean.setCategory(Category category)
          Set a reference to the domain model object representing a category.
 

Uses of Category in com.elasticpath.cmweb.ajaxbean.impl
 

Methods in com.elasticpath.cmweb.ajaxbean.impl that return Category
 Category CategoryAjaxBeanImpl.getCategory()
          Get the domain model object representing a category.
 

Methods in com.elasticpath.cmweb.ajaxbean.impl with parameters of type Category
 void CategoryAjaxBeanImpl.setCategory(Category category)
          Set a reference to the domain model object representing a category.
 

Uses of Category in com.elasticpath.domain.catalog
 

Methods in com.elasticpath.domain.catalog that return Category
 Category ProductCategory.getCategory()
          Get the category.
 Category Product.getDefaultCategory()
          Return the default Category of this product.
 Category Category.getParent()
          Get the parent category of this category.
 

Methods in com.elasticpath.domain.catalog with parameters of type Category
 void Product.addCategory(Category category)
          Add this product to the specified category.
 void Category.addChild(Category category)
          Add the given category as a child.
 java.lang.String Product.getSeoUrl(java.util.Locale locale, Category category)
          Returns the seo url of the given locale following the given category.
 void Product.removeCategory(Category category)
          Remove this product from the specified category.
 void Category.removeChild(Category category)
          Remove the given category from the children list.
 void ProductCategory.setCategory(Category category)
          Set the category.
 void Product.setDefaultCategory(Category category)
          Set the given category to be the default category of this product.
 void Category.setParent(Category category)
          Set the parent cateogry.
 void Category.setParentOneWay(Category newParent)
          Set the parent cateogry.
 

Uses of Category in com.elasticpath.domain.catalog.impl
 

Classes in com.elasticpath.domain.catalog.impl that implement Category
 class CategoryImpl
          The default implementation of Category.
 

Methods in com.elasticpath.domain.catalog.impl that return Category
 Category ProductCategoryImpl.getCategory()
          Get the category.
 Category ProductImpl.getDefaultCategory()
          Return the default Category of this product.
 Category CategoryImpl.getParent()
          Get the parent category of this category.
 

Methods in com.elasticpath.domain.catalog.impl with parameters of type Category
 void ProductImpl.addCategory(Category category)
          Add this product to the specified category.
 void CategoryImpl.addChild(Category category)
          Add the given category as a child.
 boolean CategoryImpl.equals(Category cat)
          Returns true if this category equals the given category.
 java.lang.String ProductImpl.getSeoUrl(java.util.Locale locale, Category category)
          Returns the seo url of the given locale following the given category.
 void ProductImpl.removeCategory(Category category)
          Remove this product from the specified category.
 void CategoryImpl.removeChild(Category category)
          Remove the given category from the children list.
 void ProductCategoryImpl.setCategory(Category category)
          Set the category.
 void ProductImpl.setDefaultCategory(Category category)
          Set the given category to be the default category of this product.
 void CategoryImpl.setParent(Category newParent)
          Set the parent cateogry.
 void CategoryImpl.setParentOneWay(Category newParent)
          Set the parent cateogry.
 

Uses of Category in com.elasticpath.domain.catalogview
 

Methods in com.elasticpath.domain.catalogview that return Category
 Category CatalogViewResult.getCategory()
          Returns the category.
 

Methods in com.elasticpath.domain.catalogview with parameters of type Category
 void CatalogViewResult.setCategory(Category category)
          Sets the category.
 

Uses of Category in com.elasticpath.domain.catalogview.browsing
 

Methods in com.elasticpath.domain.catalogview.browsing with parameters of type Category
 java.util.List BrowsingRequest.getFilterSeoUrls(Category category)
          Composes and returns a list of FilterSeoUrls for all filters specified the search request based on the given category.
 java.lang.String BrowsingFilterOption.getSeoUrl(Category category)
          Returns the SEO(Search Engine Optimized) url based on the given category.
 java.lang.String BrowsingRequest.getSeoUrl(Category category)
          Returns the SEO(Search Engine Optimized) url based on the given category.
 java.lang.String BrowsingRequest.getSeoUrl(Category category, int pageNumber)
          Returns the SEO(Search Engine Optimized) url based on the given category and page number.
 java.lang.String BrowsingRequest.getTitle(Category category)
          Composes and returns a title for the browsing page.
 

Uses of Category in com.elasticpath.domain.catalogview.browsing.impl
 

Methods in com.elasticpath.domain.catalogview.browsing.impl with parameters of type Category
 java.util.List BrowsingRequestImpl.getFilterSeoUrls(Category category)
          Composes and returns a list of FilterSeoUrls for all filters specified in this browsing request based on the given category.
 java.lang.String BrowsingFilterOptionImpl.getSeoUrl(Category category)
          Returns the SEO(Search Engine Optimized) url based on the given category.
 java.lang.String BrowsingRequestImpl.getSeoUrl(Category category)
          Returns the SEO(Search Engine Optimized) url based on the given category.
 java.lang.String BrowsingRequestImpl.getSeoUrl(Category category, int pageNumber)
          Returns the SEO(Search Engine Optimized) url based on the given category and page number.
 java.lang.String BrowsingRequestImpl.getTitle(Category category)
          Composes and returns a title for the browsing page.
 

Uses of Category in com.elasticpath.domain.catalogview.impl
 

Methods in com.elasticpath.domain.catalogview.impl that return Category
 Category AbstractCatalogViewResultImpl.getCategory()
          Returns the category.
 

Methods in com.elasticpath.domain.catalogview.impl with parameters of type Category
 void AbstractCatalogViewResultImpl.setCategory(Category category)
          Sets the category.
 

Uses of Category in com.elasticpath.domain.rules
 

Methods in com.elasticpath.domain.rules with parameters of type Category
 boolean PromotionRuleExceptions.isCategoryExcluded(Category category)
          Returns true if the specified category is a rule exception because it's category id has been specified as an exception.
 

Uses of Category in com.elasticpath.domain.rules.impl
 

Methods in com.elasticpath.domain.rules.impl with parameters of type Category
 boolean PromotionRuleExceptionsImpl.isCategoryExcluded(Category category)
          Returns true if the specified category is a rule exception because it's category id has been specified as an exception.
 

Uses of Category in com.elasticpath.domain.shoppingcart
 

Methods in com.elasticpath.domain.shoppingcart that return Category
 Category ShoppingCart.getLastCategory()
          Returns the last category.
 

Methods in com.elasticpath.domain.shoppingcart with parameters of type Category
 void ShoppingCart.setLastCategory(Category category)
          Sets the last category.
 

Uses of Category in com.elasticpath.domain.shoppingcart.impl
 

Methods in com.elasticpath.domain.shoppingcart.impl that return Category
 Category ShoppingCartImpl.getLastCategory()
          Returns the last category.
 

Methods in com.elasticpath.domain.shoppingcart.impl with parameters of type Category
 void ShoppingCartImpl.setLastCategory(Category category)
          Sets the last category.
 

Uses of Category in com.elasticpath.service.catalog
 

Methods in com.elasticpath.service.catalog that return Category
 Category CategoryService.add(Category category)
          Adds the given category.
 Category CategoryService.findByGuid(java.lang.String guid)
          Retrieve the category with the given guid.
 Category CategoryService.get(long categoryUid)
          Get the category with the given UID.
 Category CategoryService.getCategoryWithAttribute(long categoryUid)
          Get the category with the given UID.
 Category CategoryService.getCategoryWithSubCategories(long categoryUid)
          Get the category with the given UID.
 Category CategoryService.load(long categoryUid)
          Load the category with the given UID.
 

Methods in com.elasticpath.service.catalog with parameters of type Category
 Category CategoryService.add(Category category)
          Adds the given category.
 void CategoryService.saveOrUpdate(Category category)
          Save or update the given category.
 void CategoryService.update(Category category)
          Updates the given category.
 

Uses of Category in com.elasticpath.service.catalog.impl
 

Methods in com.elasticpath.service.catalog.impl that return Category
 Category CategoryServiceImpl.add(Category category)
          Adds the given category.
 Category CategoryServiceImpl.findByGuid(java.lang.String guid)
          Retrieve the category with the given guid.
 Category CategoryServiceImpl.get(long categoryUid)
          Get the category with the given UID.
 Category CategoryServiceImpl.getCategoryWithAttribute(long categoryUid)
          Get the category with the given UID.
 Category CategoryServiceImpl.getCategoryWithSubCategories(long categoryUid)
          Get the category with the given UID.
 Category CategoryServiceImpl.load(long categoryUid)
          Load the category with the given Uid.
 

Methods in com.elasticpath.service.catalog.impl with parameters of type Category
 Category CategoryServiceImpl.add(Category category)
          Adds the given category.
 void CategoryServiceImpl.saveOrUpdate(Category category)
          Save or update the given category.
 void CategoryServiceImpl.update(Category category)
          Updates the given category.
 

Uses of Category in com.elasticpath.service.dataimport
 

Methods in com.elasticpath.service.dataimport that return Category
 Category ImportGuidHelper.findCategoryByGuid(java.lang.String guid, boolean flagLoadProducts, boolean flagLoadAttributes, boolean flagLoadChildren)
          Retrieve the category with the given guid.
 

Uses of Category in com.elasticpath.service.dataimport.impl
 

Methods in com.elasticpath.service.dataimport.impl that return Category
 Category ImportGuidHelperImpl.findCategoryByGuid(java.lang.String guid, boolean flagLoadProducts, boolean flagLoadAttributes, boolean flagLoadChildren)
          Retrieve the category with the given guid.
 

Uses of Category in com.elasticpath.service.misc
 

Methods in com.elasticpath.service.misc with parameters of type Category
 void LazyLoadHelper.populateCategory(Category category, CategoryLoadTuner loadTuner)
          Populate the given category based on the given load tuner.
 

Uses of Category in com.elasticpath.service.misc.impl
 

Methods in com.elasticpath.service.misc.impl with parameters of type Category
 void LazyLoadHelperImpl.populateCategory(Category category, CategoryLoadTuner loadTuner)
          Populate the given category based on the given load tuner.