From cf3264a0a9950a7e73836a78f72fd4d48d087fd6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 10 Aug 2017 23:00:20 +0200 Subject: [PATCH] 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. --- .../mxchange/jshopreceipt/receipt/PdfReceiptBeanLocal.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 { + } -- 2.39.2