From 422e3fe99f41d8e95c8956ad34e3da5fcbfb69b6 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 18 Sep 2015 15:17:20 +0200 Subject: [PATCH] =?utf8?q?moved=20from=20other=20project=20Signed-off-by:R?= =?utf8?q?oland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../model/receipt/ReceiptBeanRemote.java | 1 - .../model/receipt/WrapableReceipt.java | 27 +++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 src/org/mxchange/jshopcore/model/receipt/WrapableReceipt.java diff --git a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java index 3e3380e..2328adc 100644 --- a/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java +++ b/src/org/mxchange/jshopcore/model/receipt/ReceiptBeanRemote.java @@ -18,7 +18,6 @@ package org.mxchange.jshopcore.model.receipt; import java.io.Serializable; import javax.ejb.Remote; -import org.mxchange.jshopreceipt.WrapableReceipt; /** * A remote interface for official recipt creation diff --git a/src/org/mxchange/jshopcore/model/receipt/WrapableReceipt.java b/src/org/mxchange/jshopcore/model/receipt/WrapableReceipt.java new file mode 100644 index 0000000..2b6d9a5 --- /dev/null +++ b/src/org/mxchange/jshopcore/model/receipt/WrapableReceipt.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2015 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.mxchange.jshopcore.model.receipt; + +import java.io.Serializable; + +/** + * A receipt wrapper interface. + * + * @author Roland Haeder + */ +public interface WrapableReceipt extends Serializable { +} -- 2.39.2