Uses of Class
com.mt.ecommerce.product.model.CategoryBO
Packages that use CategoryBO
-
Uses of CategoryBO in com.mt.ecommerce.product.controller
Methods in com.mt.ecommerce.product.controller that return CategoryBOModifier and TypeMethodDescriptionCategoryController.addCategory
(CategoryBO categoryBO, org.springframework.security.core.userdetails.UserDetails userDetails) Endpoint to add a new category.CategoryController.updateCategory
(CategoryBO categoryBO, org.springframework.security.core.userdetails.UserDetails userDetails) Endpoint to update an existing category.Methods in com.mt.ecommerce.product.controller that return types with arguments of type CategoryBOModifier and TypeMethodDescriptionCategoryController.getCategories
(String vendorId, int pageNo, int size) Endpoint to retrieve categories for a specific vendor with pagination.Methods in com.mt.ecommerce.product.controller with parameters of type CategoryBOModifier and TypeMethodDescriptionCategoryController.addCategory
(CategoryBO categoryBO, org.springframework.security.core.userdetails.UserDetails userDetails) Endpoint to add a new category.CategoryController.updateCategory
(CategoryBO categoryBO, org.springframework.security.core.userdetails.UserDetails userDetails) Endpoint to update an existing category. -
Uses of CategoryBO in com.mt.ecommerce.product.service
Methods in com.mt.ecommerce.product.service that return CategoryBOModifier and TypeMethodDescriptionCategoryService.addCategory
(CategoryBO categoryBO, String userName) Adds a new category.Methods in com.mt.ecommerce.product.service that return types with arguments of type CategoryBOModifier and TypeMethodDescriptionCategoryService.getCategory
(UUID vendorId, int pageNo, int size) Retrieves categories for a specific vendor with pagination.Methods in com.mt.ecommerce.product.service with parameters of type CategoryBOModifier and TypeMethodDescriptionCategoryService.addCategory
(CategoryBO categoryBO, String userName) Adds a new category.void
CategoryService.updateCategory
(CategoryBO categoryBO, String userName) Updates an existing category.