]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
added missing javadoc + updated jars
authorRoland Haeder <roland@mxchange.org>
Tue, 29 Sep 2015 08:22:08 +0000 (10:22 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 29 Sep 2015 08:22:08 +0000 (10:22 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
lib/jcoreee.jar
lib/jshop-core.jar
lib/jshop-ee-lib.jar
src/java/org/mxchange/jshopcore/model/category/CategoryConverter.java
src/java/org/mxchange/pizzaapplication/beans/checkout/CheckoutWebBean.java
src/java/org/mxchange/pizzaapplication/beans/shop/ShopWebBean.java
src/java/org/mxchange/pizzaapplication/servlet/receipt/PdfReceiptServlet.java

index 9bfe65594b36e0dc1f2bf12fefe0583a8c3d2b3b..7884f3df59de98ef74951706b221477a588f99cb 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 7d03abd1451d24fdddb3ed7fac00b82f98a11bc9..621440d1defd7a7b73478a55e38af44a08cbff60 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index b47439ce209429a21bdec51a01847ea5562b0bd6..e271a4aa7306764425f4ef65c6a7067a3cb2e52a 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index 076b5b8b84e92d54f91a9979471577d71c6ac279..f3d15dbea77369d99943a70dec939d4f05fb93fd 100644 (file)
Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ
index 1c220044929b342388864720cf4fae2e906462d6..97f7c3992e1fd423e219b16a3d8d26f58393a5ea 100644 (file)
@@ -52,6 +52,9 @@ public class CategoryConverter implements Converter {
        @Log
        private LoggerBeanLocal loggerBeanLocal;
 
+       /**
+        * Initialization of this converter
+        */
        @PostConstruct
        public void init () {
                // Try to get it
index 726fabedd100c2a57833285bf94f21b86dbbfd83..48c16d91e75d0c6c6d4c05a356c27ce741284306 100644 (file)
@@ -182,6 +182,9 @@ public class CheckoutWebBean implements CheckoutWebController {
                this.customer = customer;
        }
 
+       /**
+        * Initialization of this bean
+        */
        @PostConstruct
        public void init () {
                try {
index 1dd2ac5040c1fcc2473b5f05787899134ef48591..ced5b406d975f7fce4d4a2c3c427be4746f09590 100644 (file)
@@ -95,6 +95,9 @@ public class ShopWebBean extends AbstractWebBean implements ShopWebController {
                return Collections.unmodifiableList(this.availableProducts);
        }
        
+       /**
+        * Initialization of this bean
+        */
        @PostConstruct
        public void init () {
                try {
index 9e2cf9dbe20e4900044d81416d11b23e5fa9a299..6df5e74dfd6f2469acfb185512894a3cfd95f2cb 100644 (file)
@@ -64,7 +64,7 @@ public class PdfReceiptServlet extends HttpServlet {
 
        @Override
        public String getServletInfo () {
-               return "Produces an official recipit as PDF file for given access key.";
+               return "Produces a receipt as PDF file for given access key.";
        }
 
        @Override