]> git.mxchange.org Git - pizzaservice-swing.git/commitdiff
updated jshop-ee-lib.jar + removed deprecated methods and which are old and lost...
authorRoland Haeder <roland@mxchange.org>
Sat, 5 Sep 2015 21:47:32 +0000 (23:47 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 5 Sep 2015 21:47:32 +0000 (23:47 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jshop-ee-lib.jar
src/org/mxchange/pizzaapplication/application/PizzaApplication.java
src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java

index 7251376ffc65520c774764a34940d7dd4d318668..5b07dd4b20c721018592964274047b1f2ca9552f 100644 (file)
Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ
index 1a6f28667503a407fc8612e925f3eeaaaa1a5b9f..29658f6c627192e427298b24b47b0dce5c8b0fb7 100644 (file)
@@ -112,43 +112,6 @@ public interface PizzaApplication extends Application {
         */
        public Iterator<Category> getAllCategoriesIterator () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException;
 
-       /**
-        * Generates a link for category's parent category. If none is given, the method will return only a small
-        * note.
-        *
-        * @param category Category instance
-        * @return HTML link for category's parent category
-        * @deprecated Old lost code
-        */
-       @Deprecated
-       public String generateLinkForParent (final Category category);
-
-       /**
-        * Checks if given Product instance is available and returns a printable
-        * (human-readable) string.
-        * 
-        * @param product Product instance to check
-        * @return Human-readable version of product availability
-        * @deprecated Old lost code
-        */
-       @Deprecated
-       public String getPrintableProductAvailability (final Product product);
-
-       /**
-        * Returns a printable (human-readable) string of product's category
-        * 
-        * @param product Product instance to check
-        * @return Human-readable version of product availability
-        * @throws java.io.IOException If an IO error occurs
-        * @throws java.sql.SQLException If an SQL error occurs
-        * @throws java.lang.NoSuchMethodException If a method was not found
-        * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly
-        * @throws java.lang.reflect.InvocationTargetException If something else happens?
-        * @deprecated Old lost code
-        */
-       @Deprecated
-       public String getPrintableProductCategory (final Product product) throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException;
-
        /**
         * Adds given category data from request to database
         *
@@ -174,32 +137,4 @@ public interface PizzaApplication extends Application {
         * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the product's title is already used
         */
        public void doAdminAddProduct (final Product product) throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, ProductTitleAlreadyUsedException;
-
-       /**
-        * Handles admin product form requests
-        *
-        * @throws java.io.IOException If an IO error occurs
-        * @throws java.sql.SQLException If an SQL error occurs
-        * @throws java.lang.NoSuchMethodException If a method was not found
-        * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly
-        * @throws java.lang.reflect.InvocationTargetException If something else happens?
-        * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the product's title is already used
-        * @deprecated Old lost code
-        */
-       @Deprecated
-       public void doAdminHandleProductForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, ProductTitleAlreadyUsedException;
-
-       /**
-        * Handles admin category form requests
-        * 
-        * @throws java.io.IOException If an IO error occurs
-        * @throws java.sql.SQLException If an SQL error occurs
-        * @throws java.lang.NoSuchMethodException If a method was not found
-        * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly
-        * @throws java.lang.reflect.InvocationTargetException If something else happens?
-        * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException The category's title is already used
-        * @deprecated 
-        */
-       @Deprecated
-       public void doAdminHandleCategoryForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, CategoryTitleAlreadyUsedException;
 }
index d87bf407f012b283d8fcb6e6f4ac9f18f3abab9a..fbe20d74c0f7fa2b349eb514e6d16e266af584cf 100644 (file)
@@ -91,28 +91,6 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                throw new UnsupportedOperationException("Not supported yet."); //NOI18N
        }
 
-       @Override
-       @Deprecated
-       public String getPrintableProductAvailability (final Product product) {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N
-
-               // Is it null?
-               if (null == product) {
-                       // Should not be null
-                       throw new NullPointerException("product is null"); //NOI18N
-               }
-
-               // Get availability
-               if (product.getAvailable() == true) {
-                       // Is available
-                       return "Ja";
-               } else {
-                       // Not, not for public
-                       return "Nein";
-               }
-       }
-
        @Override
        @SuppressWarnings ("unchecked")
        public Iterator<Product> getAvailableProductsIterator () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
@@ -257,59 +235,6 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                this.getLogger().trace("EXIT!"); //NOI18N
        }
 
-       @Override
-       @Deprecated
-       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
-       @Deprecated
-       public String getPrintableProductCategory (final Product product) throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N
-
-               // product must not be null
-               if (null == product) {
-                       // Abort here
-                       throw new NullPointerException("product is null"); //NOI18N
-               }
-
-               // Declare category
-               Category category = this.categoryFrontend.getCategory(product);
-
-               // Debug message
-               this.getLogger().debug(MessageFormat.format("categoryId={0}", category)); //NOI18N
-
-               // Get decoded title
-               String title = category.getDecodedTitle();
-
-               // Trace message
-               this.getLogger().trace(MessageFormat.format("title={0} - EXIT!", title)); //NOI18N
-
-               // Return it
-               return title;
-       }
-
        /**
         * Checks if product's title is already used.
         * 
@@ -353,20 +278,6 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                //return isUsed;
        }
 
-       @Override
-       @Deprecated
-       public void doAdminHandleProductForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, ProductTitleAlreadyUsedException {
-               // Deprecated method called
-               throw new UnsupportedOperationException("Deprecated method called.");
-       }
-
-       @Override
-       @Deprecated
-       public void doAdminHandleCategoryForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, CategoryTitleAlreadyUsedException {
-               // Deprecated method called
-               throw new UnsupportedOperationException("Deprecated method called.");
-       }
-
        /**
         * Checks if category's title is already used.
         *