Uses of Interface
org.broadleafcommerce.catalog.domain.Category

Packages that use Category
org.broadleafcommerce.catalog.dao   
org.broadleafcommerce.catalog.domain   
org.broadleafcommerce.catalog.service   
org.broadleafcommerce.order.domain   
org.broadleafcommerce.order.service.call   
 

Uses of Category in org.broadleafcommerce.catalog.dao
 

Methods in org.broadleafcommerce.catalog.dao that return Category
 Category CategoryDao.readCategoryById(java.lang.Long categoryId)
           
 Category CategoryDaoImpl.readCategoryById(java.lang.Long categoryId)
           
 Category CategoryDao.readCategoryByName(java.lang.String categoryId)
           
 Category CategoryDaoImpl.readCategoryByName(java.lang.String categoryName)
           
 Category CategoryDao.save(Category category)
           
 Category CategoryDaoImpl.save(Category category)
           
 

Methods in org.broadleafcommerce.catalog.dao that return types with arguments of type Category
 java.util.List<Category> CategoryDao.readAllCategories()
           
 java.util.List<Category> CategoryDaoImpl.readAllCategories()
           
 java.util.List<Category> CategoryDao.readAllSubCategories(Category category)
           
 java.util.List<Category> CategoryDaoImpl.readAllSubCategories(Category category)
           
 

Methods in org.broadleafcommerce.catalog.dao with parameters of type Category
 void CategoryDao.delete(Category category)
           
 void CategoryDaoImpl.delete(Category category)
           
 java.util.List<Category> CategoryDao.readAllSubCategories(Category category)
           
 java.util.List<Category> CategoryDaoImpl.readAllSubCategories(Category category)
           
 Category CategoryDao.save(Category category)
           
 Category CategoryDaoImpl.save(Category category)
           
 

Uses of Category in org.broadleafcommerce.catalog.domain
 

Classes in org.broadleafcommerce.catalog.domain that implement Category
 class CategoryImpl
          The Class CategoryImpl is the default implementation of Category.
 

Fields in org.broadleafcommerce.catalog.domain declared as Category
protected  Category CategoryXref.CategoryXrefPK.category
           
protected  Category CategoryProductImpl.CategoryProductXrefPk.category
           
protected  Category FeaturedProductImpl.category
           
protected  Category ProductImpl.defaultCategory
          The default category.
protected  Category CategoryImpl.defaultParentCategory
          The default parent category.
protected  Category CategoryXref.CategoryXrefPK.subCategory
           
 

Fields in org.broadleafcommerce.catalog.domain with type parameters of type Category
protected  java.util.List<Category> CategoryImpl.allChildCategories
          The all child categories.
protected  java.util.List<Category> CategoryImpl.allParentCategories
          The all parent categories.
protected  java.util.List<Category> ProductImpl.allParentCategories
           
protected  java.util.List<Category> CategoryImpl.childCategories
           
protected  java.util.Map<java.lang.String,java.util.List<Category>> CategoryImpl.childCategoryURLMap
           
 

Methods in org.broadleafcommerce.catalog.domain that return Category
 Category FeaturedProduct.getCategory()
           
 Category CategoryProduct.getCategory()
          Gets the category.
 Category CategoryXref.CategoryXrefPK.getCategory()
           
 Category CategoryProductImpl.CategoryProductXrefPk.getCategory()
           
 Category FeaturedProductImpl.getCategory()
           
 Category Product.getDefaultCategory()
          Returns the default Category this product is associated with.
 Category ProductImpl.getDefaultCategory()
           
 Category CategoryImpl.getDefaultParentCategory()
           
 Category Category.getDefaultParentCategory()
          Gets the default parent category.
 Category CategoryXref.CategoryXrefPK.getSubCategory()
           
 

Methods in org.broadleafcommerce.catalog.domain that return types with arguments of type Category
 java.util.Map<java.lang.String,java.util.List<Category>> CategoryImpl.createChildCategoryURLMap()
           
 java.util.List<Category> CategoryImpl.getAllChildCategories()
          Gets the child categories.
 java.util.List<Category> Category.getAllChildCategories()
          Gets the child categories.
 java.util.List<Category> Product.getAllParentCategories()
          Returns all parent Category(s) this product is associated with.
 java.util.List<Category> CategoryImpl.getAllParentCategories()
           
 java.util.List<Category> ProductImpl.getAllParentCategories()
           
 java.util.List<Category> Category.getAllParentCategories()
           
 java.util.List<Category> CategoryImpl.getChildCategories()
           
 java.util.List<Category> Category.getChildCategories()
          Gets the child categories.
 java.util.Map<java.lang.String,java.util.List<Category>> CategoryImpl.getChildCategoryURLMap()
           
 java.util.Map<java.lang.String,java.util.List<Category>> Category.getChildCategoryURLMap()
          Gets the child category url map.
 

Methods in org.broadleafcommerce.catalog.domain with parameters of type Category
 boolean SkuImpl.isActive(Product product, Category category)
           
 boolean Sku.isActive(Product product, Category category)
           
 void FeaturedProduct.setCategory(Category category)
           
 void CategoryProduct.setCategory(Category category)
          Sets the category.
 void CategoryXref.CategoryXrefPK.setCategory(Category category)
           
 void CategoryProductImpl.CategoryProductXrefPk.setCategory(Category category)
           
 void FeaturedProductImpl.setCategory(Category category)
           
 void Product.setDefaultCategory(Category defaultCategory)
          Sets the default Category to associate this product with.
 void ProductImpl.setDefaultCategory(Category defaultCategory)
           
 void CategoryImpl.setDefaultParentCategory(Category defaultParentCategory)
           
 void Category.setDefaultParentCategory(Category defaultParentCategory)
          Sets the default parent category.
 void CategoryXref.CategoryXrefPK.setSubCategory(Category subCategory)
           
 

Method parameters in org.broadleafcommerce.catalog.domain with type arguments of type Category
 void CategoryImpl.setAllChildCategories(java.util.List<Category> childCategories)
          Sets the all child categories.
 void Category.setAllChildCategories(java.util.List<Category> childCategories)
          Sets the all child categories.
 void Product.setAllParentCategories(java.util.List<Category> allParentCategories)
          Sets all parent Categorys this product is associated with.
 void CategoryImpl.setAllParentCategories(java.util.List<Category> allParentCategories)
           
 void ProductImpl.setAllParentCategories(java.util.List<Category> allParentCategories)
           
 void Category.setAllParentCategories(java.util.List<Category> allParentCategories)
           
 void CategoryImpl.setChildCategories(java.util.List<Category> childCategories)
           
 void Category.setChildCategories(java.util.List<Category> childCategories)
          Sets the all child categories.
 void CategoryImpl.setChildCategoryURLMap(java.util.Map<java.lang.String,java.util.List<Category>> cachedChildCategoryUrlMap)
           
 void Category.setChildCategoryURLMap(java.util.Map<java.lang.String,java.util.List<Category>> cachedChildCategoryUrlMap)
           
 

Uses of Category in org.broadleafcommerce.catalog.service
 

Methods in org.broadleafcommerce.catalog.service that return Category
 Category CatalogServiceImpl.findCategoryById(java.lang.Long categoryId)
           
 Category CatalogService.findCategoryById(java.lang.Long categoryId)
           
 Category CatalogServiceImpl.findCategoryByName(java.lang.String categoryName)
           
 Category CatalogService.findCategoryByName(java.lang.String categoryName)
           
 Category CatalogServiceImpl.saveCategory(Category category)
           
 Category CatalogService.saveCategory(Category category)
           
 

Methods in org.broadleafcommerce.catalog.service that return types with arguments of type Category
 java.util.List<Category> CatalogServiceImpl.findAllCategories()
           
 java.util.List<Category> CatalogService.findAllCategories()
           
 java.util.Map<java.lang.String,java.util.List<Category>> CatalogServiceImpl.getChildCategoryURLMapByCategoryId(java.lang.Long categoryId)
           
 java.util.Map<java.lang.String,java.util.List<Category>> CatalogService.getChildCategoryURLMapByCategoryId(java.lang.Long categoryId)
           
 

Methods in org.broadleafcommerce.catalog.service with parameters of type Category
 java.util.List<Product> CatalogServiceImpl.findActiveProductsByCategory(Category category, java.util.Date currentDate)
           
 java.util.List<Product> CatalogService.findActiveProductsByCategory(Category category, java.util.Date currentDate)
           
 java.util.List<Product> CatalogServiceImpl.findProductsForCategory(Category category)
           
 java.util.List<Product> CatalogService.findProductsForCategory(Category category)
           
 void CatalogServiceImpl.removeCategory(Category category)
           
 void CatalogService.removeCategory(Category category)
           
 Category CatalogServiceImpl.saveCategory(Category category)
           
 Category CatalogService.saveCategory(Category category)
           
 

Uses of Category in org.broadleafcommerce.order.domain
 

Fields in org.broadleafcommerce.order.domain declared as Category
protected  Category OrderItemImpl.category
           
 

Methods in org.broadleafcommerce.order.domain that return Category
 Category OrderItemImpl.getCategory()
           
 Category OrderItem.getCategory()
           
 

Methods in org.broadleafcommerce.order.domain with parameters of type Category
 void OrderItemImpl.setCategory(Category category)
           
 void OrderItem.setCategory(Category category)
           
 

Uses of Category in org.broadleafcommerce.order.service.call
 

Methods in org.broadleafcommerce.order.service.call that return Category
 Category DiscreteOrderItemRequest.getCategory()
           
 Category BundleOrderItemRequest.getCategory()
           
 

Methods in org.broadleafcommerce.order.service.call with parameters of type Category
 void DiscreteOrderItemRequest.setCategory(Category category)
           
 void BundleOrderItemRequest.setCategory(Category category)
           
 



Copyright © 2010. All Rights Reserved.