]> git.mxchange.org Git - jcustomer-lib.git/blobdiff - src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java
auto-formatted project + updated jars
[jcustomer-lib.git] / src / org / mxchange / jshopcore / model / receipt / ReceiptBeanRemote.java
index 37ed25b1ced2eb72b099909282732e28867d55e6..6144f2efe5a5536efc9b198ae345d050263f2468 100644 (file)
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.model.customer.Customer;
 
 /**
  * A remote interface for official recipt creation
- *
+ * <p>
  * @author Roland Haeder
  */
 @Remote
@@ -31,7 +31,7 @@ public interface ReceiptBeanRemote extends Serializable {
        /**
         * Returns a wrapped PDF byte stream for given access key or null if not
         * found.
-        *
+        * <p>
         * @param accessKey Access key on the online PDF
         * @return Wrapped byte stream
         */
@@ -39,7 +39,7 @@ public interface ReceiptBeanRemote extends Serializable {
 
        /**
         * Fetches access key, if customer instance matches, else null is returned
-        *
+        * <p>
         * @param customer Customer instance
         * @return Access key or null
         */
@@ -47,28 +47,28 @@ public interface ReceiptBeanRemote extends Serializable {
 
        /**
         * Getter for access key
-        *
+        * <p>
         * @return Access key
         */
        public String getAccessKey ();
 
        /**
         * Setter for access key
-        *
+        * <p>
         * @param accessKey Access key
         */
        public void setAccessKey (final String accessKey);
 
        /**
         * Getter for customer instance
-        *
+        * <p>
         * @return Customer instance
         */
        public Customer getCustomer ();
 
        /**
         * Setter for customer instance
-        *
+        * <p>
         * @param customer Customer instance
         */
        public void setCustomer (final Customer customer);