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

Packages that use Category
org.broadleafcommerce.core.catalog.dao   
org.broadleafcommerce.core.catalog.domain   
org.broadleafcommerce.core.catalog.service   
org.broadleafcommerce.core.order.domain   
org.broadleafcommerce.core.order.service.call   
org.broadleafcommerce.core.order.service.legacy   
org.broadleafcommerce.core.order.service.manipulation   
org.broadleafcommerce.core.search.domain   
org.broadleafcommerce.core.search.service   
org.broadleafcommerce.core.search.service.solr   
 

Uses of Category in org.broadleafcommerce.core.catalog.dao
 

Methods in org.broadleafcommerce.core.catalog.dao that return Category
 Category CategoryDao.create()
          Create a new Category instance.
 Category CategoryDaoImpl.create()
           
 Category CategoryDao.findCategoryByURI(String uri)
           
 Category CategoryDaoImpl.findCategoryByURI(String uri)
           
 Category CategoryDao.readCategoryById(Long categoryId)
          Retrieve a Category instance by its primary key
 Category CategoryDaoImpl.readCategoryById(Long categoryId)
           
 Category CategoryDao.readCategoryByName(String categoryName)
          Deprecated. 
 Category CategoryDaoImpl.readCategoryByName(String categoryName)
          Deprecated. 
 Category CategoryDao.save(Category category)
          Persist a Category instance to the datastore
 Category CategoryDaoImpl.save(Category category)
           
 

Methods in org.broadleafcommerce.core.catalog.dao that return types with arguments of type Category
 List<Category> CategoryDao.readActiveSubCategoriesByCategory(Category category)
          Retrieve a list of all active child categories of the passed in Category instance.
 List<Category> CategoryDaoImpl.readActiveSubCategoriesByCategory(Category category)
           
 List<Category> CategoryDao.readActiveSubCategoriesByCategory(Category category, int limit, int offset)
          Retrieve a list of all active child categories of the passed in Category instance.
 List<Category> CategoryDaoImpl.readActiveSubCategoriesByCategory(Category category, int limit, int offset)
           
 List<Category> CategoryDao.readAllCategories()
          Retrieve all categories in the datastore
 List<Category> CategoryDaoImpl.readAllCategories()
           
 List<Category> CategoryDao.readAllCategories(int limit, int offset)
          Retrieve a subset of all categories
 List<Category> CategoryDaoImpl.readAllCategories(int limit, int offset)
           
 List<Category> CategoryDao.readAllSubCategories(Category category)
          Retrieve a list of all child categories of the passed in Category instance
 List<Category> CategoryDaoImpl.readAllSubCategories(Category category)
           
 List<Category> CategoryDao.readAllSubCategories(Category category, int limit, int offset)
          Retrieve a list of all child categories of the passed in Category instance
 List<Category> CategoryDaoImpl.readAllSubCategories(Category category, int limit, int offset)
           
 List<Category> CategoryDao.readCategoriesByName(String categoryName)
          Retrieve a list of Category instances by name.
 List<Category> CategoryDaoImpl.readCategoriesByName(String categoryName)
           
 List<Category> CategoryDao.readCategoriesByName(String categoryName, int limit, int offset)
           
 List<Category> CategoryDaoImpl.readCategoriesByName(String categoryName, int limit, int offset)
           
 

Methods in org.broadleafcommerce.core.catalog.dao with parameters of type Category
 void CategoryDao.delete(Category category)
          Removed the passed in Category instance from the datastore
 void CategoryDaoImpl.delete(Category category)
           
 List<Category> CategoryDao.readActiveSubCategoriesByCategory(Category category)
          Retrieve a list of all active child categories of the passed in Category instance.
 List<Category> CategoryDaoImpl.readActiveSubCategoriesByCategory(Category category)
           
 List<Category> CategoryDao.readActiveSubCategoriesByCategory(Category category, int limit, int offset)
          Retrieve a list of all active child categories of the passed in Category instance.
 List<Category> CategoryDaoImpl.readActiveSubCategoriesByCategory(Category category, int limit, int offset)
           
 List<Category> CategoryDao.readAllSubCategories(Category category)
          Retrieve a list of all child categories of the passed in Category instance
 List<Category> CategoryDaoImpl.readAllSubCategories(Category category)
           
 List<Category> CategoryDao.readAllSubCategories(Category category, int limit, int offset)
          Retrieve a list of all child categories of the passed in Category instance
 List<Category> CategoryDaoImpl.readAllSubCategories(Category category, int limit, int offset)
           
 Category CategoryDao.save(Category category)
          Persist a Category instance to the datastore
 Category CategoryDaoImpl.save(Category category)
           
 

Uses of Category in org.broadleafcommerce.core.catalog.domain
 

Classes in org.broadleafcommerce.core.catalog.domain that implement Category
 class CategoryImpl
           
 

Fields in org.broadleafcommerce.core.catalog.domain declared as Category
protected  Category CategoryProductXrefImpl.CategoryProductXrefPk.category
           
protected  Category CrossSaleProductImpl.category
           
protected  Category CategoryXrefImpl.CategoryXrefPK.category
           
protected  Category UpSaleProductImpl.category
           
protected  Category CategoryAttributeImpl.category
           
protected  Category FeaturedProductImpl.category
           
protected  Category ProductImpl.defaultCategory
          The default category.
protected  Category CategoryImpl.defaultParentCategory
           
protected  Category CategoryXrefImpl.CategoryXrefPK.subCategory
           
 

Fields in org.broadleafcommerce.core.catalog.domain with type parameters of type Category
protected  List<Category> CategoryImpl.allChildCategories
           
protected  List<Category> CategoryImpl.allParentCategories
           
protected  List<Category> ProductImpl.allParentCategories
           
protected  List<Category> CategoryImpl.childCategories
           
 

Methods in org.broadleafcommerce.core.catalog.domain that return Category
 Category FeaturedProduct.getCategory()
           
 Category CategoryProductXref.getCategory()
          Gets the category.
 Category CategoryAttribute.getCategory()
          Gets the Category.
 Category CategoryProductXrefImpl.getCategory()
           
 Category CategoryProductXrefImpl.CategoryProductXrefPk.getCategory()
           
 Category CrossSaleProductImpl.getCategory()
           
 Category RelatedProduct.getCategory()
           
 Category CategoryXrefImpl.getCategory()
           
 Category CategoryXrefImpl.CategoryXrefPK.getCategory()
           
 Category UpSaleProductImpl.getCategory()
           
 Category CategoryAttributeImpl.getCategory()
           
 Category CategoryXref.getCategory()
           
 Category FeaturedProductImpl.getCategory()
           
 Category ProductImpl.getDefaultCategory()
           
 Category Product.getDefaultCategory()
          Returns the default Category this product is associated with.
 Category CategoryImpl.getDefaultParentCategory()
           
 Category Category.getDefaultParentCategory()
          Gets the default parent category.
 Category CategoryXrefImpl.getSubCategory()
           
 Category CategoryXrefImpl.CategoryXrefPK.getSubCategory()
           
 Category CategoryXref.getSubCategory()
           
 

Methods in org.broadleafcommerce.core.catalog.domain that return types with arguments of type Category
 List<Category> CategoryImpl.buildCategoryHierarchy(List<Category> currentHierarchy)
           
 List<Category> Category.buildCategoryHierarchy(List<Category> currentHierarchy)
          Build category hierarchy by walking the default category tree up to the root category.
 List<Category> CategoryImpl.buildFullCategoryHierarchy(List<Category> currentHierarchy)
           
 List<Category> Category.buildFullCategoryHierarchy(List<Category> currentHierarchy)
          Build the full category hierarchy by walking up the default category tree and the all parent category tree.
 List<Category> CategoryImpl.getAllChildCategories()
           
 List<Category> Category.getAllChildCategories()
          Gets the child categories.
 List<Category> CategoryImpl.getAllParentCategories()
           
 List<Category> Category.getAllParentCategories()
          Retrieve all parent categories
 List<Category> ProductImpl.getAllParentCategories()
           
 List<Category> Product.getAllParentCategories()
          Returns all parent Category(s) this product is associated with.
 List<Category> CategoryImpl.getChildCategories()
           
 List<Category> Category.getChildCategories()
          Gets the child categories.
 

Methods in org.broadleafcommerce.core.catalog.domain with parameters of type Category
 boolean SkuImpl.isActive(Product product, Category category)
           
 boolean Sku.isActive(Product product, Category category)
          Returns whether or not this Sku, the given Product and the given Category are all active
 void FeaturedProduct.setCategory(Category category)
           
 void CategoryProductXref.setCategory(Category category)
          Sets the category.
 void CategoryAttribute.setCategory(Category category)
          Sets the Category.
 void CategoryProductXrefImpl.setCategory(Category category)
           
 void CategoryProductXrefImpl.CategoryProductXrefPk.setCategory(Category category)
           
 void CrossSaleProductImpl.setCategory(Category category)
           
 void RelatedProduct.setCategory(Category category)
           
 void CategoryXrefImpl.setCategory(Category category)
           
 void CategoryXrefImpl.CategoryXrefPK.setCategory(Category category)
           
 void UpSaleProductImpl.setCategory(Category category)
           
 void CategoryAttributeImpl.setCategory(Category category)
           
 void CategoryXref.setCategory(Category category)
           
 void FeaturedProductImpl.setCategory(Category category)
           
 void ProductImpl.setDefaultCategory(Category defaultCategory)
           
 void Product.setDefaultCategory(Category defaultCategory)
          Sets the default Category to associate this product with.
 void CategoryImpl.setDefaultParentCategory(Category defaultParentCategory)
           
 void Category.setDefaultParentCategory(Category defaultParentCategory)
          Sets the default parent category.
 void CategoryXrefImpl.setSubCategory(Category subCategory)
           
 void CategoryXrefImpl.CategoryXrefPK.setSubCategory(Category subCategory)
           
 void CategoryXref.setSubCategory(Category subCategory)
           
 

Method parameters in org.broadleafcommerce.core.catalog.domain with type arguments of type Category
 List<Category> CategoryImpl.buildCategoryHierarchy(List<Category> currentHierarchy)
           
 List<Category> Category.buildCategoryHierarchy(List<Category> currentHierarchy)
          Build category hierarchy by walking the default category tree up to the root category.
 List<Category> CategoryImpl.buildFullCategoryHierarchy(List<Category> currentHierarchy)
           
 List<Category> Category.buildFullCategoryHierarchy(List<Category> currentHierarchy)
          Build the full category hierarchy by walking up the default category tree and the all parent category tree.
 void CategoryImpl.setAllChildCategories(List<Category> childCategories)
           
 void Category.setAllChildCategories(List<Category> childCategories)
          Sets the list of child categories (active and inactive)
 void CategoryImpl.setAllParentCategories(List<Category> allParentCategories)
           
 void Category.setAllParentCategories(List<Category> allParentCategories)
          Sets the list of parent categories
 void ProductImpl.setAllParentCategories(List<Category> allParentCategories)
           
 void Product.setAllParentCategories(List<Category> allParentCategories)
          Sets all parent Categorys this product is associated with.
 void CategoryImpl.setChildCategories(List<Category> childCategories)
           
 void Category.setChildCategories(List<Category> childCategories)
          Sets the all child categories.
 

Uses of Category in org.broadleafcommerce.core.catalog.service
 

Methods in org.broadleafcommerce.core.catalog.service that return Category
 Category CatalogServiceImpl.createCategory()
           
 Category CatalogService.createCategory()
           
 Category CatalogServiceImpl.findCategoryById(Long categoryId)
           
 Category CatalogService.findCategoryById(Long categoryId)
           
 Category CatalogServiceImpl.findCategoryByName(String categoryName)
          Deprecated. 
 Category CatalogService.findCategoryByName(String categoryName)
          Deprecated. 
 Category CatalogServiceImpl.findCategoryByURI(String uri)
           
 Category CatalogService.findCategoryByURI(String uri)
          Returns a category associated with the passed in URI or null if no Category is mapped to this URI.
protected  Category RelatedProductsServiceImpl.lookupCategory(RelatedProductDTO relatedProductDTO)
           
 Category CatalogServiceImpl.saveCategory(Category category)
           
 Category CatalogService.saveCategory(Category category)
           
 

Methods in org.broadleafcommerce.core.catalog.service that return types with arguments of type Category
 List<Category> CatalogServiceImpl.findActiveSubCategoriesByCategory(Category category)
           
 List<Category> CatalogService.findActiveSubCategoriesByCategory(Category category)
           
 List<Category> CatalogServiceImpl.findActiveSubCategoriesByCategory(Category category, int limit, int offset)
           
 List<Category> CatalogService.findActiveSubCategoriesByCategory(Category category, int limit, int offset)
           
 List<Category> CatalogServiceImpl.findAllCategories()
           
 List<Category> CatalogService.findAllCategories()
           
 List<Category> CatalogServiceImpl.findAllCategories(int limit, int offset)
           
 List<Category> CatalogService.findAllCategories(int limit, int offset)
           
 List<Category> CatalogServiceImpl.findAllSubCategories(Category category)
           
 List<Category> CatalogService.findAllSubCategories(Category category)
           
 List<Category> CatalogServiceImpl.findAllSubCategories(Category category, int limit, int offset)
           
 List<Category> CatalogService.findAllSubCategories(Category category, int limit, int offset)
           
 List<Category> CatalogServiceImpl.findCategoriesByName(String categoryName)
           
 List<Category> CatalogService.findCategoriesByName(String categoryName)
          Retrieve a list of Category instance based on the name property.
 List<Category> CatalogServiceImpl.findCategoriesByName(String categoryName, int limit, int offset)
           
 List<Category> CatalogService.findCategoriesByName(String categoryName, int limit, int offset)
          Retrieve a list of Category instances based on the search criteria
 

Methods in org.broadleafcommerce.core.catalog.service with parameters of type Category
protected  List<? extends PromotableProduct> RelatedProductsServiceImpl.buildCrossSaleProductsList(Product product, Category category, RelatedProductDTO relatedProductDTO)
          Returns the crossSale products for the past in product/category
protected  List<? extends PromotableProduct> RelatedProductsServiceImpl.buildFeaturedProductsList(Product product, Category category, RelatedProductDTO relatedProductDTO)
          Returns the featured products for the past in product/category
protected  List<? extends PromotableProduct> RelatedProductsServiceImpl.buildUpSaleProductsList(Product product, Category category, RelatedProductDTO relatedProductDTO)
          Returns the upSale products for the past in product/category
 List<Product> CatalogServiceImpl.findActiveProductsByCategory(Category category, Date currentDate)
           
 List<Product> CatalogService.findActiveProductsByCategory(Category category, Date currentDate)
           
 List<Product> CatalogServiceImpl.findActiveProductsByCategory(Category category, Date currentDate, int limit, int offset)
           
 List<Product> CatalogService.findActiveProductsByCategory(Category category, Date currentDate, int limit, int offset)
           
 List<Category> CatalogServiceImpl.findActiveSubCategoriesByCategory(Category category)
           
 List<Category> CatalogService.findActiveSubCategoriesByCategory(Category category)
           
 List<Category> CatalogServiceImpl.findActiveSubCategoriesByCategory(Category category, int limit, int offset)
           
 List<Category> CatalogService.findActiveSubCategoriesByCategory(Category category, int limit, int offset)
           
 List<Category> CatalogServiceImpl.findAllSubCategories(Category category)
           
 List<Category> CatalogService.findAllSubCategories(Category category)
           
 List<Category> CatalogServiceImpl.findAllSubCategories(Category category, int limit, int offset)
           
 List<Category> CatalogService.findAllSubCategories(Category category, int limit, int offset)
           
 List<Product> CatalogServiceImpl.findFilteredActiveProductsByCategory(Category category, Date currentDate, ProductSearchCriteria searchCriteria)
           
 List<Product> CatalogService.findFilteredActiveProductsByCategory(Category category, Date currentDate, ProductSearchCriteria searchCriteria)
          Given a category and a ProudctSearchCriteria, returns the appropriate matching products
 List<Product> CatalogServiceImpl.findProductsForCategory(Category category)
           
 List<Product> CatalogService.findProductsForCategory(Category category)
           
 List<Product> CatalogServiceImpl.findProductsForCategory(Category category, int limit, int offset)
           
 List<Product> CatalogService.findProductsForCategory(Category category, int limit, int offset)
           
 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.core.order.domain
 

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

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

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

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

Fields in org.broadleafcommerce.core.order.service.call declared as Category
protected  Category ProductBundleOrderItemRequest.category
           
 

Methods in org.broadleafcommerce.core.order.service.call that return Category
 Category ProductBundleOrderItemRequest.getCategory()
           
 Category BundleOrderItemRequest.getCategory()
           
 Category AbstractOrderItemRequest.getCategory()
           
 

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

Uses of Category in org.broadleafcommerce.core.order.service.legacy
 

Methods in org.broadleafcommerce.core.order.service.legacy that return Category
protected  Category LegacyOrderServiceImpl.determineCategory(Product product, Long categoryId)
          Deprecated.  
 

Methods in org.broadleafcommerce.core.order.service.legacy with parameters of type Category
 DiscreteOrderItemRequest LegacyOrderServiceImpl.createDiscreteOrderItemRequest(Sku sku, Product product, Category category, Integer quantity, Map<String,String> itemAttributes)
          Deprecated.  
 

Uses of Category in org.broadleafcommerce.core.order.service.manipulation
 

Methods in org.broadleafcommerce.core.order.service.manipulation that return Category
 Category DiscreteOrderItemDecorator.getCategory()
           
 

Methods in org.broadleafcommerce.core.order.service.manipulation with parameters of type Category
 void DiscreteOrderItemDecorator.setCategory(Category category)
           
 

Uses of Category in org.broadleafcommerce.core.search.domain
 

Fields in org.broadleafcommerce.core.search.domain declared as Category
protected  Category CategorySearchFacetImpl.category
           
protected  Category CategoryExcludedSearchFacetImpl.category
           
 

Methods in org.broadleafcommerce.core.search.domain that return Category
 Category CategorySearchFacetImpl.getCategory()
           
 Category CategorySearchFacet.getCategory()
          Gets the associated category
 Category CategoryExcludedSearchFacetImpl.getCategory()
           
 Category CategoryExcludedSearchFacet.getCategory()
          Gets the associated category
 

Methods in org.broadleafcommerce.core.search.domain with parameters of type Category
 void CategorySearchFacetImpl.setCategory(Category category)
           
 void CategorySearchFacet.setCategory(Category category)
          Sets the associated category
 void CategoryExcludedSearchFacetImpl.setCategory(Category category)
           
 void CategoryExcludedSearchFacet.setCategory(Category category)
          Sets the associated category
 

Uses of Category in org.broadleafcommerce.core.search.service
 

Methods in org.broadleafcommerce.core.search.service with parameters of type Category
 ProductSearchResult DatabaseSearchServiceImpl.findExplicitProductsByCategory(Category category, ProductSearchCriteria searchCriteria)
           
 ProductSearchResult SearchService.findExplicitProductsByCategory(Category category, ProductSearchCriteria searchCriteria)
          Performs a search for products in the given category, taking into consideration the ProductSearchCriteria This method will NOT return products that are in a sub-level of a given category.
 ProductSearchResult DatabaseSearchServiceImpl.findProductsByCategory(Category category, ProductSearchCriteria searchCriteria)
           
 ProductSearchResult SearchService.findProductsByCategory(Category category, ProductSearchCriteria searchCriteria)
          Performs a search for products in the given category, taking into consideration the ProductSearchCriteria This method will return products that are in any sub-level of a given category.
 ProductSearchResult DatabaseSearchServiceImpl.findProductsByCategoryAndQuery(Category category, String query, ProductSearchCriteria searchCriteria)
           
 ProductSearchResult SearchService.findProductsByCategoryAndQuery(Category category, String query, ProductSearchCriteria searchCriteria)
          Performs a search for products in the given category for the given query, taking into consideration the ProductSearchCriteria
 List<SearchFacetDTO> DatabaseSearchServiceImpl.getCategoryFacets(Category category)
           
 List<SearchFacetDTO> SearchService.getCategoryFacets(Category category)
          Gets all available facets for a given category
 

Uses of Category in org.broadleafcommerce.core.search.service.solr
 

Methods in org.broadleafcommerce.core.search.service.solr with parameters of type Category
 ProductSearchResult SolrSearchServiceImpl.findExplicitProductsByCategory(Category category, ProductSearchCriteria searchCriteria)
           
 ProductSearchResult SolrSearchServiceImpl.findProductsByCategory(Category category, ProductSearchCriteria searchCriteria)
           
 ProductSearchResult SolrSearchServiceImpl.findProductsByCategoryAndQuery(Category category, String query, ProductSearchCriteria searchCriteria)
           
 List<SearchFacetDTO> SolrSearchServiceImpl.getCategoryFacets(Category category)
           
protected  String SolrSearchServiceImpl.getCategorySortField(Category category)
           
 



Copyright © 2012. All Rights Reserved.