]> git.mxchange.org Git - jfinancials-ejb.git/commitdiff
Product-only:
authorRoland Häder <roland@mxchange.org>
Thu, 16 Apr 2020 20:08:31 +0000 (22:08 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 16 Apr 2020 20:08:31 +0000 (22:08 +0200)
- renamed allFoos() to fetchAllFoos()

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jproduct/model/category/FinancialsAdminProductCategorySessionBean.java
src/java/org/mxchange/jproduct/model/category/FinancialsProductCategorySessionBean.java
src/java/org/mxchange/jproduct/model/product/FinancialsAdminGenericProductSessionBean.java
src/java/org/mxchange/jproduct/model/product/FinancialsGenericProductSessionBean.java

index 6728b74d13ac695501b046f8584dc4e8097d386c..0b0fe75b43a18c727c9a4a5d817ee4ea11528eb5 100644 (file)
@@ -169,7 +169,7 @@ public class FinancialsAdminProductCategorySessionBean extends BaseFinancialsPro
                boolean isFound = false;
 
                // Get full list from other EJB
-               final List<Category> list = this.categoryBean.allCategories();
+               final List<Category> list = this.categoryBean.fetchAllCategories();
 
                // Check each entry
                for (final Category createdCategory : list) {
index e839d4cd452dc2ff394dcc7f491c4da51590ed19..cda9d7f98de0ac6da1ec32c8bf86b08b548fbf98 100644 (file)
@@ -45,7 +45,7 @@ public class FinancialsProductCategorySessionBean extends BaseFinancialsEnterpri
 
        @Override
        @SuppressWarnings ("unchecked")
-       public List<Category> allCategories () {
+       public List<Category> fetchAllCategories () {
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allCategories: CALLED!", this.getClass().getSimpleName())); //NOI18N
 
index 82876013b92b04158f06456241b85057d9cb715d..982e45818fe755b03db326d42fa64eab48ea0fa2 100644 (file)
@@ -155,7 +155,7 @@ public class FinancialsAdminGenericProductSessionBean extends BaseFinancialsProd
                boolean isFound = false;
 
                // Get full list from other EJB
-               final List<Product> list = this.productBean.allProducts();
+               final List<Product> list = this.productBean.fetchAllProducts();
 
                // Check each entry
                for (final Product createdProduct : list) {
index bf6f5deae99674a2d5aafeef4c017c7d013dd81b..66307483e598d34b0b0af7479b7843fb3a407660 100644 (file)
@@ -37,7 +37,7 @@ public class FinancialsGenericProductSessionBean extends BaseFinancialsEnterpris
 
        @Override
        @SuppressWarnings ("unchecked")
-       public List<Product> allAvailableProducts () {
+       public List<Product> fetchAllAvailableProducts () {
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allAvailableProducts: CALLED!", this.getClass().getSimpleName())); //NOI18N
 
@@ -56,7 +56,7 @@ public class FinancialsGenericProductSessionBean extends BaseFinancialsEnterpris
 
        @Override
        @SuppressWarnings ("unchecked")
-       public List<Product> allProducts () {
+       public List<Product> fetchAllProducts () {
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.allProducts: CALLED!", this.getClass().getSimpleName())); //NOI18N