]> 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 de3f3a1ea19cc1ce4a927083f5dbaef4fae1b8c9..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.model.customer.Customer;
 
 /**
  * An interface for a basket bean
- *
- * @author Roland Haeder
+ * <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 java.rmi.RemoteException If something bad happens
-        */
-       public void addItem (final AddableBasketItem item) throws RemoteException;
-
-       /**
-        * Adds given item instance to basket. Remember that the product instance
-        * itself is not added. Instead a AddableBasketItem is created which holds
-        * information about amoutn and item type.
-        *
-        * @param item Item instance
-        * @throws java.rmi.RemoteException If something bad happens
-        */
-       public void addToBasket (final AddableBasketItem item) throws RemoteException;
-
-       /**
-        * 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
-        * @throws java.rmi.RemoteException If something bad happens
-        */
-       public boolean isAdded (final AddableBasketItem item) throws RemoteException;
-
-       /**
-        * Some "getter" for all entries in this basket
-        *
-        * @return Map on all basket items
-        * @throws java.rmi.RemoteException If something bad happens
-        */
-       public Map<Long, AddableBasketItem> getAll () throws RemoteException;
-
-       /**
-        * Getter for last entry
-        *
-        * @return Last added item in basket
-        * @throws java.rmi.RemoteException If something bad happens
-        */
-       public AddableBasketItem getLast () throws RemoteException;
 
        /**
-        * 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);
 }