]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Removed more deprecated and no longer used methods + kept one for functionality
authorRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 20:57:46 +0000 (22:57 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 20:57:46 +0000 (22:57 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/java/org/mxchange/pizzaapplication/application/PizzaApplication.java
src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java
src/java/org/mxchange/pizzaapplication/beans/controller/PizzaBean.java
src/java/org/mxchange/pizzaapplication/beans/controller/PizzaServiceBean.java

index a5483c4dbe535c4e6fd855e26094682ccf86da8d..a017e4de44bbcdfc7de3cef6c1c1b87d24ff743d 100644 (file)
@@ -123,28 +123,6 @@ public interface PizzaApplication extends Application {
        @Deprecated
        public boolean isProductChoosen (final Product product, final HttpServletRequest request, final HttpSession session);
 
-       /**
-        * Calculates total price of all choosen products
-        *
-        * @param request Request instance
-        * @param session Session instance
-        * @return Total price of all choosen products
-        * @throws javax.servlet.ServletException If something unexpected happened
-        */
-       public float calculateTotalPrice (final HttpServletRequest request, final HttpSession session) throws ServletException;
-
-       /**
-        * Calculates total amount of all choosen products
-        *
-        * @param request Request instance
-        * @param session Session instance
-        * @return Total amount of all choosen products
-        * @throws javax.servlet.ServletException If something unexpected happened
-        * @deprecated Old lost code
-        */
-       @Deprecated
-       public int calculateTotalAmount (final HttpServletRequest request, final HttpSession session) throws ServletException;
-
        /**
         * Some "getter" for HTML code 'checked="checked"' if the product is choosen
         *
index 6e8c4ba58daf389b1ff439006d32152f81021e18..c125c2e12a8565200f4f50b57dcc32cecd28c6b8 100644 (file)
@@ -99,11 +99,10 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
         * @param request Request instance
         * @param session Session instance
         * @return Total amount of all choosen products
-        * @deprecated Old lost code
+        * @deprecated Old lost 
         */
-       @Override
        @Deprecated
-       public int calculateTotalAmount (final HttpServletRequest request, final HttpSession session) throws ServletException {
+       private int calculateTotalAmount (final HttpServletRequest request, final HttpSession session) throws ServletException {
                // Trace message
                this.getLogger().trace(MessageFormat.format("request={0},session={1} - CALLED!", request, session)); //NOI18N
 
@@ -147,54 +146,6 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                return totalAmount;
        }
 
-       /**
-        * Calculates total price of all choosen products
-        *
-        * @param request Request instance
-        * @param session Session instance
-        * @return Total price of all choosen products
-        */
-       @Override
-       public float calculateTotalPrice (final HttpServletRequest request, final HttpSession session) throws ServletException {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("request={0},session={1} - CALLED!", request, session)); //NOI18N
-
-               // Is product and session set?
-               if (null == request) {
-                       // Not set
-                       throw new NullPointerException("request is null"); //NOI18N
-               } else if (null == session) {
-                       // Not set
-                       throw new NullPointerException("session is null"); //NOI18N
-               }
-
-               // Init total price
-               float totalPrice = 0.00f;
-
-               // Get iterator
-               Iterator<Product> iterator = this.getAvailableProducts();
-
-               // "Walk" over all products
-               while (iterator.hasNext()) {
-                       // Get next product
-                       Product product = iterator.next();
-
-                       // Is this choosen?
-                       if (this.isProductChoosen(product, request, session)) {
-                               // Then add product's total price
-                               this.getLogger().debug(MessageFormat.format("Calling getTotalPositionPriceFromRequestSession({0},request,session) ...", product.getItemId())); //NOI18N
-                               totalPrice += this.getTotalPositionPriceFromRequestSession(product, request, session);
-                       }
-                       this.getLogger().debug(MessageFormat.format("product={0},totalPrice={1}", product.getItemId(), totalPrice)); //NOI18N
-               }
-
-               // Trace message
-               this.getLogger().trace(MessageFormat.format(" totalPrice={0} - EXIT!", totalPrice)); //NOI18N
-
-               // Return total price
-               return totalPrice;
-       }
-
        @Override
        public void doBootstrap () {
                throw new UnsupportedOperationException("Not supported yet."); //NOI18N
index 1608590f0a971d8a2af3732251952c4055ca2474..d8621470b01ec37c3d716b04e8b817d88d06b749 100644 (file)
@@ -89,28 +89,6 @@ public interface PizzaBean extends FrameworkBean {
        @Deprecated
        public boolean isProductChoosen (final Product product, final HttpServletRequest request, final HttpSession session);
 
-       /**
-        * Calculates total price of all choosen products
-        *
-        * @param request Request instance
-        * @param session Session instance
-        * @return Total price of all choosen products
-        * @throws javax.servlet.ServletException If something unexpected happened
-        */
-       public float calculateTotalPrice (final HttpServletRequest request, final HttpSession session) throws ServletException;
-
-       /**
-        * Calculates total amount of all choosen products
-        *
-        * @param request Request instance
-        * @param session Session instance
-        * @return Total amount of all choosen products
-        * @throws javax.servlet.ServletException If something unexpected happened
-        * @deprecated Old lost code
-        */
-       @Deprecated
-       public int calculateTotalAmount (final HttpServletRequest request, final HttpSession session) throws ServletException;
-
        /**
         * Some "getter" for HTML code 'checked="checked"' if the product is choosen
         *
index c7b5fe9fba79972be800e97033089d2fccfa9527..8ca0429e3207fc69911f431e971d5c5083537ded 100644 (file)
@@ -94,32 +94,6 @@ public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
                }
        }
 
-       /**
-        * Calculates total amount of all choosen products
-        *
-        * @param request Request instance
-        * @param session Session instance
-        * @return Total amount of all choosen products
-        * @deprecated Old lost code
-        */
-       @Override
-       @Deprecated
-       public int calculateTotalAmount (final HttpServletRequest request, final HttpSession session) throws ServletException {
-               return this.app.calculateTotalAmount(request, session);
-       }
-
-       /**
-        * Calculates total price of all choosen products
-        *
-        * @param request Request instance
-        * @param session Session instance
-        * @return Total price of all choosen products
-        */
-       @Override
-       public float calculateTotalPrice (final HttpServletRequest request, final HttpSession session) throws ServletException {
-               return this.app.calculateTotalPrice(request, session);
-       }
-
        /**
         * Some "getter" for amount from session
         *