]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java
Cleanup through inspection + updated jar(s)
[jcustomer-lib.git] / src / org / mxchange / jshopcore / model / product / ProductSessionBeanRemote.java
index cba78297972873caecdf55577729a251d0e7a5cf..a644d745324d0c8c258af6226106e0e60047fae0 100644 (file)
 package org.mxchange.jshopcore.model.product;
 
 import java.io.Serializable;
-import java.rmi.RemoteException;
-import java.util.Deque;
+import java.util.List;
 import javax.ejb.Remote;
 
 /**
  * An interface for non-admin purposes
- *
- * @author Roland Haeder
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
  */
 @Remote
 public interface ProductSessionBeanRemote extends Serializable {
 
        /**
         * Some "getter" for a linked list of only available products
-        *
+        * <p>
         * @return Only available products
-        * @throws java.rmi.RemoteException If anything went wrong
         */
-       public Deque<Product> getAvailableProducts () throws RemoteException;
+       List<Product> getAvailableProducts ();
 }