]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
Cleanup through inspection + updated jar(s)
[jcustomer-lib.git] / src / org / mxchange / jshopcore / model / basket / BasketSessionBeanRemote.java
index 2eb7d1ffaaaaa1ca5ceeb1f2a2af7f22b329f283..31350b03272c0ab799611c42ed70a4a8342708a6 100644 (file)
@@ -23,7 +23,7 @@ import org.mxchange.jshopcore.model.customer.Customer;
 
 /**
  * An interface for a basket bean
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 @Remote
@@ -31,9 +31,11 @@ public interface BasketSessionBeanRemote extends Serializable {
 
        /**
         * Registers the order list of tems with the customer
-        *
+        * <p>
         * @param customer Customer instance
-        * @param itemList Ordered items list
+        * @param orderedItems Ordered items list
+        * <p>
+        * @return Access key
         */
-       public void aregisterItems (final Customer customer, final List<AddableBasketItem> itemList);
+       String registerItems (final Customer customer, final List<AddableBasketItem> orderedItems);
 }