]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jcustomercore/model/customer/CustomerSessionBeanRemote.java
Splitted remote interface into admin and general custom stuff
[jcustomer-lib.git] / src / org / mxchange / jcustomercore / model / customer / CustomerSessionBeanRemote.java
index 09e02dcb984d5bd2b9d4bc00ca2f3cacd25ff115..5585d80a501e0363288999dc56e9634cc7c56ff0 100644 (file)
@@ -17,7 +17,6 @@
 package org.mxchange.jcustomercore.model.customer;
 
 import java.io.Serializable;
-import java.util.List;
 import javax.ejb.Remote;
 import org.mxchange.jcustomercore.exceptions.CustomerAlreadyRegisteredException;
 
@@ -61,12 +60,4 @@ public interface CustomerSessionBeanRemote extends Serializable {
         */
        Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException;
 
-       /**
-        * Returns a list of all customers. This method should be used from
-        * administrative beans.
-        * <p>
-        * @return A list of all customers
-        */
-       List<Customer> allCustomers ();
-
 }