]> git.mxchange.org Git - jshop-lib.git/blobdiff - src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
Continued:
[jshop-lib.git] / src / org / mxchange / jshopcore / model / basket / BasketSessionBeanRemote.java
index adc5041cca53056de627c7c536b3112d24b3bb0c..c93b9b68339d0d20f90f0ca513eff840cb5922c6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Häder
+ * Copyright (C) 2016 - 2018 Free Software Foundation
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -29,6 +29,14 @@ import org.mxchange.jcustomercore.model.customer.Customer;
 @Remote
 public interface BasketSessionBeanRemote extends Serializable {
 
+       /**
+        * Returns user's current basket, or creates an empty initial if none is
+        * found.
+        * <p>
+        * @return User's current basked
+        */
+       Basket<AddableBasketItem> getCurrentBasket ();
+
        /**
         * Clears this bean from previous usage
         */
@@ -37,10 +45,11 @@ public interface BasketSessionBeanRemote extends Serializable {
        /**
         * Registers the order list of tems with the customer
         * <p>
-        * @param customer Customer instance
+        * @param customer     Customer instance
         * @param orderedItems Ordered items list
         * <p>
         * @return Access key
         */
        String registerItems (final Customer customer, final List<AddableBasketItem> orderedItems);
+
 }