Uses of Class
org.salespointframework.catalog.Product
| Package | Description |
|---|---|
| org.salespointframework.catalog | |
| org.salespointframework.inventory |
The inventory subsystem.
|
| org.salespointframework.order |
The order subsystem.
|
-
Uses of Product in org.salespointframework.catalog
Classes in org.salespointframework.catalog with type parameters of type Product Modifier and Type Interface Description interfaceCatalog<T extends Product>Repository interface forProductsMethods in org.salespointframework.catalog that return Product Modifier and Type Method Description ProductProduct. setName(@NonNull String name)ProductProduct. setPrice(@NonNull javax.money.MonetaryAmount price)Methods in org.salespointframework.catalog with parameters of type Product Modifier and Type Method Description intProduct. compareTo(Product other) -
Uses of Product in org.salespointframework.inventory
Methods in org.salespointframework.inventory that return Product Modifier and Type Method Description protected abstract ProductInventoryItem. getProduct()Returns theProductthisInventoryItembelongs to.protected ProductMultiInventoryItem. getProduct()ProductUniqueInventoryItem. getProduct()Methods in org.salespointframework.inventory with parameters of type Product Modifier and Type Method Description default InventoryItems<T>MultiInventory. findByProduct(Product product)Returns allInventoryItemsavailable for a givenProduct.default Optional<T>UniqueInventory. findByProduct(Product product)Returns theInventoryItemfor the givenProduct.booleanInventoryItem. keepsTrackOf(Product product)Returns whether theInventoryItembelongs to the givenProduct.Constructors in org.salespointframework.inventory with parameters of type Product Constructor Description InventoryItem(Product product, Quantity quantity)MultiInventoryItem(Product product, Quantity quantity)UniqueInventoryItem(Product product, Quantity quantity) -
Uses of Product in org.salespointframework.order
Methods in org.salespointframework.order that return Product Modifier and Type Method Description ProductCartItem. getProduct()Methods in org.salespointframework.order with parameters of type Product Modifier and Type Method Description OrderLineOrder. addOrderLine(Product product, Quantity quantity)CartItemCart. addOrUpdateItem(Product product, double amount)CartItemCart. addOrUpdateItem(Product product, long amount)CartItemCart. addOrUpdateItem(Product product, Quantity quantity)Totalable<OrderLine>Order. getOrderLines(Product product)booleanOrderLine. refersTo(Product product)