From f1e7a9aa58bd9c350e4bb5a403154c4c4a56c46f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 16 Apr 2020 22:12:15 +0200 Subject: [PATCH] Don't cherry-pick: - renamed allFoos() to fetchAllFoos() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../model/receipt/FinancialReceiptSessionBeanRemote.java | 4 ++-- .../receipt_item/FinancialReceiptItemSessionBeanRemote.java | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java b/src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java index 20c1401..38533e7 100644 --- a/src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java +++ b/src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java @@ -35,7 +35,7 @@ public interface FinancialReceiptSessionBeanRemote extends Serializable { *

* @return A list of all receipts */ - List allReceipts (); + List fetchAllReceipts (); /** * Returns a list of all user's receipts @@ -44,7 +44,7 @@ public interface FinancialReceiptSessionBeanRemote extends Serializable { *

* @return A list of all user's receipts */ - List allUsersReceipts (final User user); + List fetchAllUsersReceipts (final User user); /** * Adds given receipt and returns the updated version. If the receipt has diff --git a/src/org/mxchange/jfinancials/model/receipt_item/FinancialReceiptItemSessionBeanRemote.java b/src/org/mxchange/jfinancials/model/receipt_item/FinancialReceiptItemSessionBeanRemote.java index 109479f..f77d2fe 100644 --- a/src/org/mxchange/jfinancials/model/receipt_item/FinancialReceiptItemSessionBeanRemote.java +++ b/src/org/mxchange/jfinancials/model/receipt_item/FinancialReceiptItemSessionBeanRemote.java @@ -36,7 +36,7 @@ public interface FinancialReceiptItemSessionBeanRemote extends Serializable { *

* @return A list of all receipt items */ - List allReceiptItems (); + List fetchAllReceiptItems (); /** * Returns a list of all items by given receipt instance @@ -45,7 +45,7 @@ public interface FinancialReceiptItemSessionBeanRemote extends Serializable { *

* @return A list of all assigned receipt items */ - List allReceiptItems (final BillableReceipt receipt); + List fetchReceiptItemsByReceipt (final BillableReceipt receipt); /** * Returns a list of all user's receipt items @@ -54,7 +54,7 @@ public interface FinancialReceiptItemSessionBeanRemote extends Serializable { *

* @return A list of all user's receipt items */ - List allUsersReceiptItems (final User user); + List fetchReceiptItemsByUserUser (final User user); /** * Adds given receipt item and returns the updated version. If the receipt -- 2.39.5