]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jshopcore/model/basket/BasketSessionBeanRemote.java
auto-formatted project + updated jars
[jcustomer-lib.git] / src / org / mxchange / jshopcore / model / basket / BasketSessionBeanRemote.java
index 721790a934b635b03f08d870b8ec3601d61fd77a..010c0308baa2d74f0ee9e38363f792580514611a 100644 (file)
 package org.mxchange.jshopcore.model.basket;
 
 import java.io.Serializable;
-import java.rmi.RemoteException;
-import java.util.Map;
+import java.util.List;
 import javax.ejb.Remote;
-import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
+import org.mxchange.jshopcore.model.customer.Customer;
 
 /**
  * An interface for a basket bean
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 @Remote
 public interface BasketSessionBeanRemote extends Serializable {
 
        /**
-        * Adds given item instance to this basket
-        *
-        * @param item Item instance to add
-        * @throws org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException If the item as already been added
-        */
-       public void addItem (final AddableBasketItem item) throws BasketItemAlreadyAddedException;
-
-       /**
-        * Checks if the basket is empty
-        *
-        * @return Whether the basket is empty
-        * @throws java.rmi.RemoteException If something bad happens
-        */
-       public boolean isEmpty () throws RemoteException;
-
-       /**
-        * Checks whether the given product as already been added. If the product's
-        * item id number was found in basket, the corresponding item instance will
-        * be set
-        *
-        * @param item Item instance to check
-        * @return Whether the given item has been found
-        */
-       public boolean isAdded (final AddableBasketItem item);
-
-       /**
-        * Some "getter" for all entries in this basket
-        *
-        * @return Map on all basket items
-        */
-       public Map<Long, AddableBasketItem> getAll ();
-
-       /**
-        * Getter for last entry
-        *
-        * @return Last added item in basket
-        */
-       public AddableBasketItem getLast ();
-
-       /**
-        * Getter for last num rows
-        *
-        * @return Last num rows
+        * Registers the order list of tems with the customer
+        * <p>
+        * @param customer Customer instance
+        * @param itemList Ordered items list
+        * @return Access key
         */
-       public int getLastNumRows ();
+       public String registerItems (final Customer customer, final List<AddableBasketItem> itemList);
 }