Uses of Class
com.mt.ecommerce.product.model.ProductBO
Packages that use ProductBO
Package
Description
-
Uses of ProductBO in com.mt.ecommerce.product.controller
Methods in com.mt.ecommerce.product.controller that return ProductBOModifier and TypeMethodDescriptionProductController.createProduct
(org.springframework.security.core.userdetails.UserDetails userDetails, ProductBO productBO) Endpoint to create a new product.ProductController.updateProduct
(ProductBO productBO, org.springframework.security.core.userdetails.UserDetails userDetails) Endpoint to update an existing product.Methods in com.mt.ecommerce.product.controller that return types with arguments of type ProductBOModifier and TypeMethodDescriptionProductController.getAllProducts
(String vendorId, int page, int size) Endpoint to retrieve all products for a specific vendor.ProductController.getAllProductsWithCategory
(String vendorId, String categoryId, int page, int size) Endpoint to retrieve all products for a specific vendor and category.Methods in com.mt.ecommerce.product.controller with parameters of type ProductBOModifier and TypeMethodDescriptionProductController.createProduct
(org.springframework.security.core.userdetails.UserDetails userDetails, ProductBO productBO) Endpoint to create a new product.ProductController.updateProduct
(ProductBO productBO, org.springframework.security.core.userdetails.UserDetails userDetails) Endpoint to update an existing product. -
Uses of ProductBO in com.mt.ecommerce.product.model
Methods in com.mt.ecommerce.product.model that return types with arguments of type ProductBOMethod parameters in com.mt.ecommerce.product.model with type arguments of type ProductBO -
Uses of ProductBO in com.mt.ecommerce.product.service
Methods in com.mt.ecommerce.product.service that return ProductBOModifier and TypeMethodDescriptionProductService.saveProduct
(ProductBO productBO, String userName) Saves a new product.Methods in com.mt.ecommerce.product.service that return types with arguments of type ProductBOModifier and TypeMethodDescriptionProductService.getProduct
(UUID vendorId, int pageNo, int size) Retrieves products for a specific vendor with pagination.ProductService.getProduct
(UUID vendorId, UUID categoryId, int pageNo, int size) Retrieves products for a specific vendor and category with pagination.Methods in com.mt.ecommerce.product.service with parameters of type ProductBOModifier and TypeMethodDescriptionProductService.saveProduct
(ProductBO productBO, String userName) Saves a new product.void
ProductService.updateProduct
(ProductBO productBO, String userName) Updates an existing product.