]> git.mxchange.org Git - jfinancials-lib.git/commitdiff
Don't cherry-pick:
authorRoland Häder <roland@mxchange.org>
Thu, 16 Apr 2020 20:12:15 +0000 (22:12 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 16 Apr 2020 20:12:15 +0000 (22:12 +0200)
- renamed allFoos() to fetchAllFoos()

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jfinancials/model/receipt/FinancialReceiptSessionBeanRemote.java
src/org/mxchange/jfinancials/model/receipt_item/FinancialReceiptItemSessionBeanRemote.java

index 20c140195677290c54de61f26d247558cce74420..38533e77025a19dcf24456026321a2ea822df46a 100644 (file)
@@ -35,7 +35,7 @@ public interface FinancialReceiptSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all receipts
         */
-       List<BillableReceipt> allReceipts ();
+       List<BillableReceipt> fetchAllReceipts ();
 
        /**
         * Returns a list of all user's receipts
@@ -44,7 +44,7 @@ public interface FinancialReceiptSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all user's receipts
         */
-       List<BillableReceipt> allUsersReceipts (final User user);
+       List<BillableReceipt> fetchAllUsersReceipts (final User user);
 
        /**
         * Adds given receipt and returns the updated version. If the receipt has
index 109479fd3cca62f5436755580c70476e60f69758..f77d2fe8a05423c0425be684ab4307c43257157a 100644 (file)
@@ -36,7 +36,7 @@ public interface FinancialReceiptItemSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all receipt items
         */
-       List<BillableReceiptItem> allReceiptItems ();
+       List<BillableReceiptItem> fetchAllReceiptItems ();
 
        /**
         * Returns a list of all items by given receipt instance
@@ -45,7 +45,7 @@ public interface FinancialReceiptItemSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all assigned receipt items
         */
-       List<BillableReceiptItem> allReceiptItems (final BillableReceipt receipt);
+       List<BillableReceiptItem> fetchReceiptItemsByReceipt (final BillableReceipt receipt);
 
        /**
         * Returns a list of all user's receipt items
@@ -54,7 +54,7 @@ public interface FinancialReceiptItemSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all user's receipt items
         */
-       List<BillableReceiptItem> allUsersReceiptItems (final User user);
+       List<BillableReceiptItem> fetchReceiptItemsByUserUser (final User user);
 
        /**
         * Adds given receipt item and returns the updated version. If the receipt