From: Roland Haeder Date: Mon, 7 Sep 2015 14:25:13 +0000 (+0200) Subject: updated jcore.jar + jcoreee.jar + jshop-core.jar + jshop-ee-lib.jar X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7699f935d942528c7dab05e2d1f2a72fe125e792;p=pizzaservice-swing.git updated jcore.jar + jcoreee.jar + jshop-core.jar + jshop-ee-lib.jar Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index 102a877..636db5c 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 86fe75a..7ab41e1 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar index c8b08a6..b803106 100644 Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ diff --git a/lib/jshop-ee-lib.jar b/lib/jshop-ee-lib.jar index 1a3aef3..7a715b3 100644 Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ diff --git a/lib/jswingcore.jar b/lib/jswingcore.jar index 960b58d..f478143 100644 Binary files a/lib/jswingcore.jar and b/lib/jswingcore.jar differ diff --git a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index fbe20d7..e469a33 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -44,20 +44,20 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz @Override public Deque getAllCategories () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { - // Deligate to frontend - return this.categoryFrontend.getAllCategories(); + // Unfinished + throw new UnsupportedOperationException("Unfinished method."); } @Override public Deque getAllProducts () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { - // Deligate to frontend - return this.productFrontend.getAllProducts(); + // Unfinished + throw new UnsupportedOperationException("Unfinished method."); } @Override public Deque 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 } /**