]> 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 8066015d964a84b8368a4bc0259f7e55c550074d..a644d745324d0c8c258af6226106e0e60047fae0 100644 (file)
 package org.mxchange.jshopcore.model.product;
 
 import java.io.Serializable;
-import java.util.Deque;
+import java.util.List;
 import javax.ejb.Remote;
 
 /**
  * An interface for non-admin purposes
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 @Remote
@@ -30,8 +30,8 @@ public interface ProductSessionBeanRemote extends Serializable {
 
        /**
         * Some "getter" for a linked list of only available products
-        *
+        * <p>
         * @return Only available products
         */
-       public Deque<Product> getAvailableProducts ();
+       List<Product> getAvailableProducts ();
 }