]> git.mxchange.org Git - jcustomer-lib.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:13:38 +0000 (15:13 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 24 Sep 2015 13:13:38 +0000 (15:13 +0200)
- auto-reformatted many files
- updated jars
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
lib/jcoreee.jar
lib/jshop-core.jar
src/org/mxchange/jshopcore/model/category/AdminCategorySessionBeanRemote.java
src/org/mxchange/jshopcore/model/customer/CustomerSessionBeanRemote.java
src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java

index 57dc0a07e9ad739e6f82121851bb5ecdf7291de2..c0bdbee1e02a1d6bf6ef6af3c07a3bd7c43e06fe 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 884b0d96ea6bf9165d0544762c053be8168aa340..d550fe018c1a514bef85d93ba1e622042048b6e6 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index 90365fe70f990fc5a9e3fae53e46f57c1d9163a5..3e77fa799e8b8ef8e53f83888d9832a67c5aa1b1 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index 27273d59f82c21813b399f3a62947bd1deb3b0ad..7d4cf293e583c3fd868231af79f31a634dad2e86 100644 (file)
@@ -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<roland@mxchange.org>
  */
 @Remote
index d28216124bd0226365ce377ffbab98fde288d699..b5d8428df0130094d8859ed4fb696bca4ee77e12 100644 (file)
@@ -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.
index 6e64228d085a5dc9887abb8672fa64e470461e70..37ed25b1ced2eb72b099909282732e28867d55e6 100644 (file)
@@ -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);
 }