From 415c5b5917e2c5d5592a2ff324f0497e564f08eb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 10 Sep 2017 00:01:42 +0200 Subject: [PATCH] Renamed package to 'model' as these remote interfaces belong to a model (entity). MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../income/FinancialIncomeSessionBeanRemote.java | 3 +-- .../receipt/FinancialReceiptSessionBeanRemote.java | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) rename src/org/mxchange/jfinancials/{financial => model}/income/FinancialIncomeSessionBeanRemote.java (91%) rename src/org/mxchange/jfinancials/{financial => model}/receipt/FinancialReceiptSessionBeanRemote.java (93%) diff --git a/src/org/mxchange/jfinancials/financial/income/FinancialIncomeSessionBeanRemote.java b/src/org/mxchange/jfinancials/model/income/FinancialIncomeSessionBeanRemote.java similarity index 91% rename from src/org/mxchange/jfinancials/financial/income/FinancialIncomeSessionBeanRemote.java rename to src/org/mxchange/jfinancials/model/income/FinancialIncomeSessionBeanRemote.java index 2c9ccb9..7ed2652 100644 --- a/src/org/mxchange/jfinancials/financial/income/FinancialIncomeSessionBeanRemote.java +++ b/src/org/mxchange/jfinancials/model/income/FinancialIncomeSessionBeanRemote.java @@ -14,11 +14,10 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jfinancials.financial.income; +package org.mxchange.jfinancials.model.income; import java.io.Serializable; import javax.ejb.Remote; -import org.mxchange.jfinancials.model.income.BillableIncome; /** * A remote interface for financial income stuff diff --git a/src/org/mxchange/jfinancials/financial/receipt/FinancialReceiptSessionBeanRemote.java b/src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java similarity index 93% rename from src/org/mxchange/jfinancials/financial/receipt/FinancialReceiptSessionBeanRemote.java rename to src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java index 8cb847d..da03bca 100644 --- a/src/org/mxchange/jfinancials/financial/receipt/FinancialReceiptSessionBeanRemote.java +++ b/src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java @@ -14,13 +14,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jfinancials.financial.receipt; +package org.mxchange.jfinancials.model.receipt; import java.io.Serializable; import java.util.Collection; import javax.ejb.Remote; import org.mxchange.jfinancials.exceptions.ReceiptAlreadyAddedException; -import org.mxchange.jfinancials.model.receipt.BillableReceipt; import org.mxchange.jusercore.model.user.User; /** -- 2.39.5