From: Roland Haeder Date: Thu, 24 Sep 2015 13:13:38 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4fb36d4e9d989c2d453c6ff2514b7c8ed634ff9d;p=jcustomer-lib.git Continued: - auto-reformatted many files - updated jars Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index 57dc0a0..c0bdbee 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 884b0d9..d550fe0 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar index 90365fe..3e77fa7 100644 Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ diff --git a/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java b/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java index 27273d5..7d4cf29 100644 --- a/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java @@ -22,8 +22,8 @@ import org.mxchange.jshopcore.exceptions.CannotAddCategoryException; import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException; /** - * An interface for categories for "ADMIN" role - *. + * An interface for categories for "ADMIN" role. + * * @author Roland Haeder */ @Remote diff --git a/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java b/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java index d282161..b5d8428 100644 --- a/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java @@ -47,7 +47,7 @@ public interface CustomerSessionBeanRemote extends Serializable { /** * Registers the customer and creates a customer number after succesful * persisting. - * + * * @param customer Initial customer instance * @return Prepared Customer instance * @throws org.mxchange.jshopcore.exceptions.CustomerAlreadyRegisteredException If the customer is already registered. diff --git a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java index 6e64228..37ed25b 100644 --- a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java @@ -45,13 +45,6 @@ public interface ReceiptBeanRemote extends Serializable { */ public String fetchAccessKey (final Customer customer); - /** - * Setter for access key - * - * @param accessKey Access key - */ - public void setAccessKey (final String accessKey); - /** * Getter for access key * @@ -60,11 +53,11 @@ public interface ReceiptBeanRemote extends Serializable { public String getAccessKey (); /** - * Setter for customer instance + * Setter for access key * - * @param customer Customer instance + * @param accessKey Access key */ - public void setCustomer (final Customer customer); + public void setAccessKey (final String accessKey); /** * Getter for customer instance @@ -72,4 +65,11 @@ public interface ReceiptBeanRemote extends Serializable { * @return Customer instance */ public Customer getCustomer (); + + /** + * Setter for customer instance + * + * @param customer Customer instance + */ + public void setCustomer (final Customer customer); }