X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Forg%2Fmxchange%2Fjshopcore%2Fmodel%2Fproduct%2FProductSessionBeanRemote.java;h=a644d745324d0c8c258af6226106e0e60047fae0;hb=42f309299ed8ff01eaf5b605183bab1df23e6fa0;hp=cba78297972873caecdf55577729a251d0e7a5cf;hpb=8ff7ded93d58c588fa28e442f6970e4547c14d53;p=jcustomer-lib.git diff --git a/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java index cba7829..a644d74 100644 --- a/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/product/ProductSessionBeanRemote.java @@ -17,23 +17,21 @@ 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 + *

+ * @author Roland Haeder */ @Remote public interface ProductSessionBeanRemote extends Serializable { /** * Some "getter" for a linked list of only available products - * + *

* @return Only available products - * @throws java.rmi.RemoteException If anything went wrong */ - public Deque getAvailableProducts () throws RemoteException; + List getAvailableProducts (); }