]> git.mxchange.org Git - jshop-receipt-core.git/commitdiff
Let's make all local (and remote, of course) interfaces serializable, not really
authorRoland Häder <roland@mxchange.org>
Thu, 10 Aug 2017 21:00:20 +0000 (23:00 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 10 Aug 2017 21:00:20 +0000 (23:00 +0200)
need to write it explicitly but it should hint the developer that this all must
be indeed serializable.

src/org/mxchange/jshopreceipt/receipt/PdfReceiptBeanLocal.java

index 87ecf8d24cb07a20ecfd49416e80354c531e5e9b..a5fc8c79861cc3285efeb407b4d33e1aadb1c777 100644 (file)
@@ -16,6 +16,7 @@
  */
 package org.mxchange.jshopreceipt.receipt;
 
+import java.io.Serializable;
 import javax.ejb.Local;
 
 /**
@@ -24,5 +25,6 @@ import javax.ejb.Local;
  * @author Roland Häder<roland@mxchange.org>
  */
 @Local
-public interface PdfReceiptBeanLocal {
+public interface PdfReceiptBeanLocal extends Serializable {
+
 }