]> git.mxchange.org Git - pizzaservice-swing.git/commitdiff
updated jcore.jar + jcoreee.jar + jshop-core.jar + jshop-ee-lib.jar
authorRoland Haeder <roland@mxchange.org>
Mon, 7 Sep 2015 14:25:13 +0000 (16:25 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 7 Sep 2015 14:25:13 +0000 (16:25 +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
lib/jswingcore.jar
src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java

index 102a8771502fba6ad981b73e33ff10447eab92f7..636db5cb817c5a8422435600d1eaa83f399dcde9 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 86fe75a9e533a326f985e6a8393dca08f273cc1d..7ab41e1c9a0e1344f49e1954003a1530883d66af 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index c8b08a6fa6d476b0664134f334d77686d9bdbc13..b803106f528e206a211bd74783f4ccc50ce249b9 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index 1a3aef3f615284aa33254def640f0e8bc559d7b2..7a715b3c2addcb98f27fdeacbdc33cb64f057ea0 100644 (file)
Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ
index 960b58d575f620f5e04d8cc8273a13661e085b38..f478143db823186b7588e6249d50daadd58aa79d 100644 (file)
Binary files a/lib/jswingcore.jar and b/lib/jswingcore.jar differ
index fbe20d74c0f7fa2b349eb514e6d16e266af584cf..e469a33560cbea61378f29fad88320c0200b50bc 100644 (file)
@@ -44,20 +44,20 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
 
        @Override
        public Deque<Category> getAllCategories () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
-               // Deligate to frontend
-               return this.categoryFrontend.getAllCategories();
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
        }
 
        @Override
        public Deque<Product> getAllProducts () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
-               // Deligate to frontend
-               return this.productFrontend.getAllProducts();
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
        }
 
        @Override
        public Deque<Product> getAvailableProducts () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
-               // Deligate to frontend
-               return this.productFrontend.getAllAvailableProducts();
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
        }
 
        @Override
@@ -97,8 +97,8 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                // Trace message
                this.getLogger().trace("CALLED!"); //NOI18N
 
-               // Ask frontend for a list of products
-               return this.productFrontend.getAvailableProductsIterator();
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
        }
 
        @Override
@@ -107,8 +107,8 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                // Trace message
                this.getLogger().trace("CALLED!"); //NOI18N
 
-               // Ask frontend for a list of products
-               return this.productFrontend.getAllProductsIterator();
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
        }
 
        @Override
@@ -117,8 +117,8 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                // Trace message
                this.getLogger().trace("CALLED!"); //NOI18N
 
-               // Ask frontend for a list of categories
-               return this.categoryFrontend.getAllCategoriesIterator();
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
        }
 
        /**
@@ -131,8 +131,8 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                // Trace message
                this.getLogger().trace("title=" + title + " - CALLED!"); //NOI18N
 
-               // Delegate to frontend
-               return this.categoryFrontend.isCategoryTitleUsed(title);
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
        }
 
        @Override
@@ -174,11 +174,11 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                        throw new CategoryTitleAlreadyUsedException(category);
                }
 
-               // The category is not found, so add it to database
-               this.categoryFrontend.addCategory(title, id);
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
 
                // Trace message
-               this.getLogger().trace("EXIT!"); //NOI18N
+               //this.getLogger().trace("EXIT!"); //NOI18N
        }
 
        @Override
@@ -228,11 +228,11 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                        throw new ProductTitleAlreadyUsedException(product);
                }
 
-               // The product is not found, so add it to database
-               this.productFrontend.addProduct(title, price, categoryId, available);
+               // Unfinished
+               throw new UnsupportedOperationException("Unfinished method.");
 
                // Trace message
-               this.getLogger().trace("EXIT!"); //NOI18N
+               //this.getLogger().trace("EXIT!"); //NOI18N
        }
 
        /**