]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java
Cleanup through inspection + updated jar(s)
[jcustomer-lib.git] / src / org / mxchange / jshopcore / model / customer / CustomerSessionBeanRemote.java
index 26b9e72c8bf768aa0d8d47829b5cd5dafb2d40d3..d9ac07e0b6ad1d2edd441e91ec45cdb17615fc08 100644 (file)
@@ -35,7 +35,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
         * <p>
         * @return Prepared Customer instance
         */
-       public Customer fillCustomerData (final Customer customer);
+       Customer fillCustomerData (final Customer customer);
 
        /**
         * Checks if the the given customer instance is already registered
@@ -44,7 +44,7 @@ public interface CustomerSessionBeanRemote extends Serializable {
         * <p>
         * @return Whether the customer is already registered
         */
-       public boolean isReqistered (final Customer customer);
+       boolean isReqistered (final Customer customer);
 
        /**
         * Registers the customer and creates a customer number after succesful
@@ -58,5 +58,5 @@ public interface CustomerSessionBeanRemote extends Serializable {
         * org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException If
         * the customer is already registered.
         */
-       public Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException;
+       Customer registerCustomer (final Customer customer) throws CustomerAlreadyRegisteredException;
 }