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

Packages that use CategoryXref
org.broadleafcommerce.core.catalog.dao   
org.broadleafcommerce.core.catalog.domain   
 

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

Methods in org.broadleafcommerce.core.catalog.dao that return CategoryXref
 CategoryXref CategoryXrefDao.readXrefByIds(Long categoryId, Long subCategoryId)
          Find a specific relationship between a parent categoy and sub-category (child)
 CategoryXref CategoryXrefDaoImpl.readXrefByIds(Long categoryId, Long subCategoryId)
           
 CategoryXref CategoryXrefDao.save(CategoryXrefImpl categoryXref)
          Persist the passed in category relationship to the datastore
 CategoryXref CategoryXrefDaoImpl.save(CategoryXrefImpl categoryXref)
           
 

Methods in org.broadleafcommerce.core.catalog.dao that return types with arguments of type CategoryXref
 List<CategoryXref> CategoryXrefDao.readXrefsByCategoryId(Long categoryId)
          Retrieve all the category relationships for which the passed in Category primary key is a parent
 List<CategoryXref> CategoryXrefDaoImpl.readXrefsByCategoryId(Long categoryId)
           
 List<CategoryXref> CategoryXrefDao.readXrefsBySubCategoryId(Long subCategoryId)
          Retrieve all the category relationships for which the passed in Category primary key is a sub category (or child)
 List<CategoryXref> CategoryXrefDaoImpl.readXrefsBySubCategoryId(Long subCategoryId)
           
 

Methods in org.broadleafcommerce.core.catalog.dao with parameters of type CategoryXref
 void CategoryXrefDao.delete(CategoryXref categoryXref)
          Remove the passed in category relationship from the datastore
 void CategoryXrefDaoImpl.delete(CategoryXref categoryXref)
           
 

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

Classes in org.broadleafcommerce.core.catalog.domain that implement CategoryXref
 class CategoryXrefImpl
          The Class CategoryXrefImpl is for testing purposes only.
 

Fields in org.broadleafcommerce.core.catalog.domain with type parameters of type CategoryXref
protected  List<CategoryXref> CategoryImpl.allChildCategoryXrefs
           
protected  List<CategoryXref> CategoryImpl.allParentCategoryXrefs
           
protected  List<CategoryXref> CategoryImpl.childCategoryXrefs
           
 

Methods in org.broadleafcommerce.core.catalog.domain that return types with arguments of type CategoryXref
 List<CategoryXref> CategoryImpl.getAllChildCategoryXrefs()
           
 List<CategoryXref> Category.getAllChildCategoryXrefs()
           
 List<CategoryXref> CategoryImpl.getAllParentCategoryXrefs()
           
 List<CategoryXref> Category.getAllParentCategoryXrefs()
           
 List<CategoryXref> CategoryImpl.getChildCategoryXrefs()
           
 List<CategoryXref> Category.getChildCategoryXrefs()
           
 

Method parameters in org.broadleafcommerce.core.catalog.domain with type arguments of type CategoryXref
 void CategoryImpl.setAllChildCategoryXrefs(List<CategoryXref> childCategories)
           
 void Category.setAllChildCategoryXrefs(List<CategoryXref> childCategories)
           
 void CategoryImpl.setAllParentCategoryXrefs(List<CategoryXref> allParentCategories)
           
 void Category.setAllParentCategoryXrefs(List<CategoryXref> allParentCategories)
           
 void CategoryImpl.setChildCategoryXrefs(List<CategoryXref> childCategories)
           
 void Category.setChildCategoryXrefs(List<CategoryXref> childCategories)
           
 



Copyright © 2013. All Rights Reserved.