]> git.mxchange.org Git - jfinancials-war.git/commitdiff
Product-only:
authorRoland Häder <roland@mxchange.org>
Sat, 5 Oct 2019 00:21:54 +0000 (02:21 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 5 Oct 2019 00:21:54 +0000 (02:21 +0200)
- improved inline documentation a bit (EJBs are called, not any bean)

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jfinancials/beans/generic_product/FinancialAdminProductWebRequestBean.java
src/java/org/mxchange/jfinancials/beans/generic_product/list/FinancialsProductListWebViewBean.java
src/java/org/mxchange/jfinancials/beans/product_category/list/FinancialsCategoryListWebViewBean.java

index c60efe1fcd0d92e4711f294bf53f0c2ab81412ad..5228b6887a2ae2668798469f73c1c1898e947e82 100644 (file)
@@ -171,7 +171,7 @@ public class FinancialAdminProductWebRequestBean extends BaseFinancialsBean impl
                final Product updatedProduct;
 
                try {
-                       // Call bean
+                       // Call EJB
                        updatedProduct = this.adminProductBean.addGenericProduct(product);
                } catch (final ProductAlreadyAddedException ex) {
                        // Continue to throw
index a94912069bf8dfc9f26a250e2b2834d2b5aeaa77..371943e2cfb888cd14605a504efdbf4ac124e080 100644 (file)
@@ -217,7 +217,7 @@ public class FinancialsProductListWebViewBean extends BaseFinancialsBean impleme
        public void init () {
                // Is cache there?
                if (!this.productCache.iterator().hasNext()) {
-                       // Get whole list
+                       // Get whole list from EJB
                        final List<Product> products = this.productBean.allProducts();
 
                        // "Walk" through all entries and add to cache
index 46598701d62ebe5daf3fd8695bbbe593d5829703..23602a462b46ef8e8a7f7ef7046f7cd4382b0aa9 100644 (file)
@@ -192,7 +192,7 @@ public class FinancialsCategoryListWebViewBean extends BaseFinancialsBean implem
        public void init () {
                // Is cache there?
                if (!this.categoryCache.iterator().hasNext()) {
-                       // Get whole list
+                       // Get whole list from EJB
                        final List<Category> categories = this.categoryBean.allCategories();
 
                        // "Walk" through all entries and add to cache