]> 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:59:50 +0000 (22:59 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 21:04:18 +0000 (23:04 +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 a017e4de44bbcdfc7de3cef6c1c1b87d24ff743d..38ecddb5723943d78f0c430ed252570eba152bf2 100644 (file)
@@ -65,41 +65,6 @@ public interface PizzaApplication extends Application {
        @Deprecated
        static final String HTTP_PARAM_MASK = "%s[%s]"; //NOI18N
 
-       /**
-        * Some "getter" for amount from session
-        *
-        * @param product Product instance
-        * @param session Session instance
-        * @return Amount as string
-        * @deprecated Old code
-        */
-       @Deprecated
-       public String getAmountFromSession (final Product product, final HttpSession session);
-
-       /**
-        * Some "getter" for choose from session
-        *
-        * @param product Product instance
-        * @param session Session instance
-        * @return Choose as string
-        * @deprecated Old code
-        */
-       @Deprecated
-       public String getChooseFromSession (final Product product, final HttpSession session);
-
-       /**
-        * Some "getter" for total price of position from request or session.
-        * Single price and amount is multiplyed.
-        *
-        * @param product Product instance
-        * @param request Request instance
-        * @param session Session instance
-        * @return Amount as string
-        * @deprecated Old code
-        */
-       @Deprecated
-       public float getTotalPositionPriceFromRequestSession (final Product product, final HttpServletRequest request, final HttpSession session);
-
        /**
         * Initializes this instance with given ServletContext
         *
@@ -143,15 +108,6 @@ public interface PizzaApplication extends Application {
         */
        public String getDisabledHtmlFromSession (final HttpServletRequest request, final HttpSession session) throws ServletException;
 
-       /**
-        * Some getter for printable value from session or an empty string for null.
-        *
-        * @param session Session instance
-        * @param key Key to get
-        * @return Value from key, empty string for null
-        */
-       public Object getPrintableValeFromSession (final HttpSession session, final String key);
-
        /**
         * Somewhat setter in session
         *
index c125c2e12a8565200f4f50b57dcc32cecd28c6b8..a542e56aab003a95cdef6b35805a0060c235465a 100644 (file)
@@ -167,10 +167,10 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
         * @param product Product instance
         * @param session Session instance
         * @return Amount as string
+        * @deprecated Old lost code
         */
-       @Override
        @Deprecated
-       public String getAmountFromSession (final Product product, final HttpSession session) {
+       private String getAmountFromSession (final Product product, final HttpSession session) {
                // Trace message
                this.getLogger().trace(MessageFormat.format("product={0},session={1} - CALLED!", product, session)); //NOI18N
 
@@ -243,45 +243,6 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                }
        }
 
-       /**
-        * Some "getter" for choose from session
-        * 
-        * @param product Product instance
-        * @param session Session instance
-        * @return Choose as string
-        */
-       @Override
-       @Deprecated
-       public String getChooseFromSession (final Product product, final HttpSession session) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("product={0},session={1} - CALLED!", product, session)); //NOI18N
-
-               // Is product and session set?
-               if (null == product) {
-                       // Not set
-                       throw new NullPointerException("product is null"); //NOI18N
-               } else if (null == session) {
-                       // Not set
-                       throw new NullPointerException("session is null"); //NOI18N
-               }
-
-               // Get attribute
-               Object object = this.getValueFromSession(product, session, HTTP_PARAM_ITEM_ID);
-
-               // Is the object null?
-               if (null == object) {
-                       // Not found
-                       this.getLogger().debug(MessageFormat.format("Returning empty string for product={0} ...", product.getItemId())); //NOI18N
-                       return ""; //NOI18N
-               }
-
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("object={0} - CALLED!", object)); //NOI18N
-
-               // Cast to string and return it
-               return (String) object;
-       }
-
        /**
         * Some "getter" for HTML code 'disabled="disabled"' for e.g. submit buttons
         *
@@ -353,40 +314,6 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                }
        }
 
-       /**
-        * Some getter for printable value from session or an empty string for null.
-        *
-        * @param session Session instance
-        * @param key Key to get
-        * @return Value from key, empty string for null
-        */
-       @Override
-       public Object getPrintableValeFromSession (final HttpSession session, final String key) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("session={0},key={1} - CALLED", session, key)); //NOI18N
-
-               // Are both parameter not null?
-               if (null == session) {
-                       // Abort here
-                       throw new NullPointerException("session is null"); //NOI18N
-               } else  if (null == key) {
-                       // Abort here
-                       throw new NullPointerException("key is null"); //NOI18N
-               }
-
-               // Now get it
-               Object value = this.getValueFromSession(session, key);
-
-               // Debug message
-               this.getLogger().debug(MessageFormat.format("value={0}", value)); //NOI18N
-
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("Calling this.convertNullToEmpty({0}) ... - EXIT!", value)); //NOI18N
-
-               // Return actual value
-               return this.convertNullToEmpty(value);
-       }
-
        /**
         * Some "getter" for a an array of only available products
         *
@@ -456,21 +383,6 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                }
        }
 
-       /**
-        * Some "getter" for total price of position from request or session.
-        * Single price and amount is multiplyed.
-        *
-        * @param product Product instance
-        * @param request Request instance
-        * @param session Session instance
-        * @return Amount as string
-        */
-       @Override
-       @Deprecated
-       public float getTotalPositionPriceFromRequestSession (final Product product, final HttpServletRequest request, final HttpSession session) {
-               throw new UnsupportedOperationException("This method is deprecated and shall not be called.");
-       }
-
        /**
         * Checks whether the given product is choosen, request overules session.
         *
index d8621470b01ec37c3d716b04e8b817d88d06b749..1fc01c602940e6367322611ed492519f49b4bcba 100644 (file)
@@ -37,39 +37,6 @@ import org.mxchange.jshop.product.Product;
  * @author Roland Haeder
  */
 public interface PizzaBean extends FrameworkBean {
-       /**
-        * Some "getter" for amount from session
-        *
-        * @param product Product instance
-        * @param session Session instance
-        * @return Amount as string
-        * @deprecated Old code
-        */
-       @Deprecated
-       public String getAmountFromSession (final Product product, final HttpSession session);
-
-       /**
-        * Some "getter" for choose from session
-        *
-        * @param product Product instance
-        * @param session Session instance
-        * @return Choose as string
-        * @deprecated Old code
-        */
-       @Deprecated
-       public String getChooseFromSession (final Product product, final HttpSession session);
-
-       /**
-        * Some "getter" for total price of position from request or session.
-        * Single price and amount is multiplyed.
-        *
-        * @param product Product instance
-        * @param request Request instance
-        * @param session Session instance
-        * @return Amount as string
-        */
-       public float getTotalPositionPriceFromRequestSession (final Product product, final HttpServletRequest request, final HttpSession session);
-
        /**
         * Initializes this instance
         * 
@@ -109,15 +76,6 @@ public interface PizzaBean extends FrameworkBean {
         */
        public String getDisabledHtmlFromSession (final HttpServletRequest request, final HttpSession session) throws ServletException;
 
-       /**
-        * Some getter for printable value from session or an empty string for null.
-        *
-        * @param session Session instance
-        * @param key Key to get
-        * @return Value from key, empty string for null
-        */
-       public Object getPrintableValeFromSession (final HttpSession session, final String key);
-
        /**
         * Somewhat setter in session
         *
index 8ca0429e3207fc69911f431e971d5c5083537ded..b5e5f205c35bc13e01c6d86d7c7d3c9b04371f7d 100644 (file)
@@ -94,19 +94,6 @@ public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
                }
        }
 
-       /**
-        * Some "getter" for amount from session
-        *
-        * @param product Product instance
-        * @param session Session instance
-        * @return Amount as string
-        */
-       @Override
-       @Deprecated
-       public String getAmountFromSession (final Product product, final HttpSession session) {
-               return this.app.getAmountFromSession(product, session);
-       }
-
        /**
         * Some "getter" for HTML code 'checked="checked"' if the product is choosen
         * 
@@ -120,19 +107,6 @@ public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
                return this.app.getCheckedHtmlFromProduct(product, request, session);
        }
 
-       /**
-        * Some "getter" for choose from session
-        * 
-        * @param product Product instance
-        * @param session Session instance
-        * @return Choose as string
-        */
-       @Override
-       @Deprecated
-       public String getChooseFromSession (final Product product, final HttpSession session) {
-               return this.app.getChooseFromSession(product, session);
-       }
-
        /**
         * Some "getter" for HTML code 'disabled="disabled"' for e.g. submit buttons
         *
@@ -157,18 +131,6 @@ public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
                return this.app.getPrintableProduktAvailability(product);
        }
 
-       /**
-        * Some getter for printable value from session or an empty string for null.
-        *
-        * @param session Session instance
-        * @param key Key to get
-        * @return Value from key, empty string for null
-        */
-       @Override
-       public Object getPrintableValeFromSession (final HttpSession session, final String key) {
-               return this.app.getPrintableValeFromSession(session, key);
-       }
-
        /**
         * Some "getter" for a an array of only available products
         *
@@ -199,21 +161,6 @@ public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
                return this.app.getAllCategories();
        }
 
-       /**
-        * Some "getter" for total price of position from request or session.
-        * Single price and amount is multiplyed.
-        *
-        * @param product Product instance
-        * @param request Request instance
-        * @param session Session instance
-        * @return Amount as string
-        */
-       @Override
-       @Deprecated
-       public float getTotalPositionPriceFromRequestSession (final Product product, final HttpServletRequest request, final HttpSession session) {
-               return this.app.getTotalPositionPriceFromRequestSession(product, request, session);
-       }
-
        /**
         * Checks whether the given product is choosen, request overules session.
         *