From: Roland Häder Date: Thu, 10 Aug 2017 21:00:20 +0000 (+0200) Subject: Let's make all local (and remote, of course) interfaces serializable, not really X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cf3264a0a9950a7e73836a78f72fd4d48d087fd6;p=jshop-receipt-lib.git Let's make all local (and remote, of course) interfaces serializable, not really need to write it explicitly but it should hint the developer that this all must be indeed serializable. --- diff --git a/src/org/mxchange/jshopreceipt/receipt/PdfReceiptBeanLocal.java b/src/org/mxchange/jshopreceipt/receipt/PdfReceiptBeanLocal.java index 87ecf8d..a5fc8c7 100644 --- a/src/org/mxchange/jshopreceipt/receipt/PdfReceiptBeanLocal.java +++ b/src/org/mxchange/jshopreceipt/receipt/PdfReceiptBeanLocal.java @@ -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 */ @Local -public interface PdfReceiptBeanLocal { +public interface PdfReceiptBeanLocal extends Serializable { + }