Uses of Interface
org.broadleafcommerce.core.catalog.domain.CategoryXref
Packages that use CategoryXref
Package
Description
-
Uses of CategoryXref in org.broadleafcommerce.core.catalog.dao
Methods in org.broadleafcommerce.core.catalog.dao that return CategoryXrefModifier and TypeMethodDescriptionCategoryXrefDao.readXrefByIds(Long categoryId, Long subCategoryId) Find a specific relationship between a parent categoy and sub-category (child)CategoryXrefDaoImpl.readXrefByIds(Long categoryId, Long subCategoryId) CategoryXrefDao.save(CategoryXrefImpl categoryXref) Persist the passed in category relationship to the datastoreCategoryXrefDaoImpl.save(CategoryXrefImpl categoryXref) Methods in org.broadleafcommerce.core.catalog.dao that return types with arguments of type CategoryXrefModifier and TypeMethodDescriptionCategoryXrefDao.readXrefsByCategoryId(Long categoryId) Retrieve all the category relationships for which the passed inCategoryprimary key is a parentCategoryXrefDaoImpl.readXrefsByCategoryId(Long categoryId) CategoryXrefDao.readXrefsBySubCategoryId(Long subCategoryId) Retrieve all the category relationships for which the passed inCategoryprimary key is a sub category (or child)CategoryXrefDaoImpl.readXrefsBySubCategoryId(Long subCategoryId) Methods in org.broadleafcommerce.core.catalog.dao with parameters of type CategoryXrefModifier and TypeMethodDescriptionvoidCategoryXrefDao.delete(CategoryXref categoryXref) Remove the passed in category relationship from the datastorevoidCategoryXrefDaoImpl.delete(CategoryXref categoryXref) -
Uses of CategoryXref in org.broadleafcommerce.core.catalog.domain
Classes in org.broadleafcommerce.core.catalog.domain that implement CategoryXrefFields in org.broadleafcommerce.core.catalog.domain with type parameters of type CategoryXrefModifier and TypeFieldDescriptionprotected List<CategoryXref>CategoryImpl.allChildCategoryXrefsprotected List<CategoryXref>CategoryImpl.allParentCategoryXrefsprotected List<CategoryXref>CategoryImpl.childCategoryXrefsMethods in org.broadleafcommerce.core.catalog.domain with type parameters of type CategoryXrefModifier and TypeMethodDescription<G extends CategoryXref>
org.broadleafcommerce.common.copy.CreateResponse<G>CategoryXrefImpl.createOrRetrieveCopyInstance(org.broadleafcommerce.common.copy.MultiTenantCopyContext context) Methods in org.broadleafcommerce.core.catalog.domain that return CategoryXrefModifier and TypeMethodDescriptionCategory.getParentCategoryXref()Return the parent category xref of the default parent or first applicable parentCategoryImpl.getParentCategoryXref()Methods in org.broadleafcommerce.core.catalog.domain that return types with arguments of type CategoryXrefModifier and TypeMethodDescriptionCategory.getAllChildCategoryXrefs()CategoryImpl.getAllChildCategoryXrefs()Category.getAllParentCategoryXrefs()Retrieve all the xref entities linking this category to parent categoriesCategoryImpl.getAllParentCategoryXrefs()Category.getChildCategoryXrefs()CategoryImpl.getChildCategoryXrefs()Method parameters in org.broadleafcommerce.core.catalog.domain with type arguments of type CategoryXrefModifier and TypeMethodDescriptionvoidCategory.setAllChildCategoryXrefs(List<CategoryXref> childCategories) voidCategoryImpl.setAllChildCategoryXrefs(List<CategoryXref> childCategories) voidCategory.setAllParentCategoryXrefs(List<CategoryXref> allParentCategories) Set all the xref entities linking this product to parent categoriesvoidCategoryImpl.setAllParentCategoryXrefs(List<CategoryXref> allParentCategories) voidCategory.setChildCategoryXrefs(List<CategoryXref> childCategories) voidCategoryImpl.setChildCategoryXrefs(List<CategoryXref> childCategories)