-
public final class Cart
-
-
Field Summary
Fields Modifier and Type Field Description private final StringcartIdprivate final List<ProductBasketItem>productsprivate final IntegertotalQuantityprivate final BigDecimaltotalPrice
-
Constructor Summary
Constructors Constructor Description Cart(String cartId, List<ProductBasketItem> products, Integer totalQuantity, BigDecimal totalPrice)
-
Method Summary
Modifier and Type Method Description final StringgetCartId()final List<ProductBasketItem>getProducts()final IntegergetTotalQuantity()final BigDecimalgetTotalPrice()-
-
Constructor Detail
-
Cart
Cart(String cartId, List<ProductBasketItem> products, Integer totalQuantity, BigDecimal totalPrice)
-
-
Method Detail
-
getProducts
final List<ProductBasketItem> getProducts()
-
getTotalQuantity
final Integer getTotalQuantity()
-
getTotalPrice
final BigDecimal getTotalPrice()
-
-
-
-