]> git.mxchange.org Git - jshop-lib.git/blobdiff - src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java
Cleanup through inspection + updated jar(s)
[jshop-lib.git] / src / org / mxchange / jshopcore / model / receipt / ReceiptBeanRemote.java
index 3762a84cc9a76d50978d7fda373b09adf1c718f0..37def8bad1c3ddd7fcbad233da9d1c42f86847f7 100644 (file)
@@ -36,7 +36,7 @@ public interface ReceiptBeanRemote extends Serializable {
         * <p>
         * @return Wrapped byte stream
         */
-       public WrapableReceipt createReceiptFromAccessKey (final String accessKey);
+       WrapableReceipt createReceiptFromAccessKey (final String accessKey);
 
        /**
         * Fetches access key, if customer instance matches, else null is returned
@@ -45,33 +45,33 @@ public interface ReceiptBeanRemote extends Serializable {
         * <p>
         * @return Access key or null
         */
-       public String fetchAccessKey (final Customer customer);
+       String fetchAccessKey (final Customer customer);
 
        /**
         * Getter for access key
         * <p>
         * @return Access key
         */
-       public String getAccessKey ();
+       String getAccessKey ();
 
        /**
         * Setter for access key
         * <p>
         * @param accessKey Access key
         */
-       public void setAccessKey (final String accessKey);
+       void setAccessKey (final String accessKey);
 
        /**
         * Getter for customer instance
         * <p>
         * @return Customer instance
         */
-       public Customer getCustomer ();
+       Customer getCustomer ();
 
        /**
         * Setter for customer instance
         * <p>
         * @param customer Customer instance
         */
-       public void setCustomer (final Customer customer);
+       void setCustomer (final Customer customer);
 }