]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Removed even more deprecated/unused methods
authorRoland Haeder <roland@mxchange.org>
Wed, 2 Sep 2015 17:14:23 +0000 (19:14 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 2 Sep 2015 17:15:56 +0000 (19:15 +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 eba91b9f8fb4bcbde633083b9bf6710be76bc27d..d281e97cf0ad79ff1900f4e6585ee389c21da0ac 100644 (file)
@@ -88,15 +88,6 @@ public interface PizzaApplication extends Application {
         */
        public void init (final ServletContext context) throws UnsupportedDatabaseBackendException, SQLException, IOException, BadTokenException;
 
-       /**
-        * Somewhat setter in session
-        *
-        * @param session Session instance
-        * @param key Session key to set
-        * @param value Value to set
-        */
-       public void setValueInSession (final HttpSession session, final String key, final Object value);
-
        /**
         * Some "getter" for a an array of only available products
         * 
@@ -157,15 +148,6 @@ public interface PizzaApplication extends Application {
         */
        public void doAdminAddProduct (final ServletRequest request) throws ServletException, ProductTitleAlreadyUsedException;
 
-       /**
-        * Generates link HTML code for given category's parent id, if set. This
-        * link then points to products.jsp?category_id=x
-        *
-        * @param category Category instance
-        * @return HTML code
-        */
-       public String generateLinkForParent (final Category category);
-
        /**
         * Handles admin product form requests
         *
index 920ada7540a7df5f38bda863d6e141f1e111679e..cc1e3632f6904d89f294184df2dc06938006b409 100644 (file)
@@ -222,77 +222,6 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                }
        }
 
-       @Deprecated
-       private boolean isProductChoosen (final Product product, final ServletRequest request, final HttpSession session) {
-               throw new UnsupportedOperationException("This method is deprecated and shall not be called"); //NOI18N
-       }
-
-       @Override
-       public void setValueInSession (final HttpSession session, final String key, final Object value) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("session={0},key={1},value={2} - CALLED!", session, key, value)); //NOI18N
-
-               synchronized(session) {
-                       // Set it synced
-                       session.setAttribute(key, value);
-               }
-
-               // Trace message
-               this.getLogger().trace("EXIT!"); //NOI18N
-       }
-
-       /**
-        * Some getter for value from session
-        *
-        * @param product Product instance
-        * @param session Session instance
-        * @param attribute Attribute to get value from
-        * @return Value from session
-        * @deprecated Old lost code
-        */
-       @Deprecated
-       private Object getValueFromSession (final Product product, final HttpSession session, final String attribute) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("product={0},session={1},attribute={2} - CALLED!", product, session, attribute)); //NOI18N
-
-               // Init variable
-               Object value = this.getValueFromSession(session, String.format(HTTP_PARAM_MASK, attribute, product.getItemId()));
-               
-               this.getLogger().debug(MessageFormat.format("product={0},attribute={1},value={2}", product.getItemId(), attribute, value)); //NOI18N
-
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("value={0} - EXIT!", value)); //NOI18N
-
-               // Return it
-               return value;
-       }
-
-       /**
-        * Some getter for value from session
-        *
-        * @param session Session instance
-        * @param key Key to get value from
-        * @return Value from session
-        */
-       private Object getValueFromSession (final HttpSession session, final String key) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("session={0},key={1} - CALLED!", session, key)); //NOI18N
-
-               // Init value
-               Object value;
-
-               // Get it synchronized from session
-               synchronized (session) {
-                       value = session.getAttribute(key);
-               }
-
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("value={0} - EXIT!", value)); //NOI18N
-
-               // Return it
-               return value;
-       }
-
        /**
         * Initializes database frontends.
         */
@@ -492,30 +421,6 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P
                this.getLogger().trace("EXIT!"); //NOI18N
        }
 
-       @Override
-       public String generateLinkForParent (final Category category) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N
-
-               // category must not be null
-               if (null == category) {
-                       // Is null
-                       throw new NullPointerException("category is null"); //NOI18N
-               }
-
-               // Get parent id
-               Long parentId = category.getParentId();
-
-               // Is the id set?
-               if (parentId > 0) {
-                       // Product HTML code for link
-                       throw new UnsupportedOperationException(MessageFormat.format("parentId={0} - Unfinished!", parentId)); //NOI18N
-               }
-
-               // No parent set
-               return "Keine";
-       }
-
        @Override
        public String getPrintableProduktCategory (final Product product) throws ServletException {
                // Trace message
index c15dcfe79d814de7e5f52c6afa2608d0d3591a49..70a7c7ae9c1ce5b9e3d82e89c5dad59285a97486 100644 (file)
@@ -41,15 +41,6 @@ public interface PizzaBean extends FrameworkBean {
         */
        public void init () throws FacesException;
 
-       /**
-        * Somewhat setter in session
-        *
-        * @param session Session instance
-        * @param key Session key to set
-        * @param value Value to set
-        */
-       public void setValueInSession (final HttpSession session, final String key, final Object value);
-
        /**
         * Some "getter" for an iterator of only available products
         * 
@@ -134,15 +125,6 @@ public interface PizzaBean extends FrameworkBean {
         */
        public void doAdminAddProduct (final ServletRequest request) throws ServletException, ProductTitleAlreadyUsedException;
 
-       /**
-        * Generates link HTML code for given category's parent id, if set. This
-        * link then points to products.jsp?category_id=x
-        *
-        * @param category Category instance
-        * @return HTML code
-        */
-       public String generateLinkForParent (final Category category);
-
        /**
         * Handles admin product form requests
         *
index 681aad76d261a312c9ae7edc337b29485d68f00a..85347b39a1a21f768154a8857c07b2263b63698e 100644 (file)
@@ -129,11 +129,6 @@ public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
                return this.app.getAllCategories();
        }
 
-       @Override
-       public void setValueInSession (final HttpSession session, final String key, final Object value) {
-               this.app.setValueInSession(session, key, value);
-       }
-
        @Override
        public void doAdminAddCategory (final ServletRequest request) throws ServletException, CategoryTitleAlreadyUsedException {
                this.app.doAdminAddCategory(request);
@@ -144,11 +139,6 @@ public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
                this.app.doAdminAddProduct(request);
        }
 
-       @Override
-       public String generateLinkForParent (final Category category) {
-               return this.app.generateLinkForParent(category);
-       }
-
        @Override
        public String getPrintableProduktCategory (final Product product) throws ServletException {
                return this.app.getPrintableProduktCategory(product);