]> git.mxchange.org Git - pizzaservice-swing.git/commitdiff
updated jars
authorRoland Haeder <roland@mxchange.org>
Thu, 10 Sep 2015 20:13:57 +0000 (22:13 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 10 Sep 2015 20:13:57 +0000 (22:13 +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 de27ca6829fa35a86410f5f03fb9631bbd5a801f..00e90e137a26c3f568dd22c4d0d25b25b2c1c88a 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 935a2c95c4a2c3876bdb5fbc0aa3c28141edb024..3186bb61c16482959c3c7ad77a27adedc3b145e0 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index 4b07e19ee3c21d6130ea27bfdeeeb563eda320bc..1b9d6e37990a5324cfd9db04abb269ec9d6e85da 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index f077244855e9b65095a8c2e9c89ad0c0e558305f..268d3525255df6f4dad377467c20025a80c7685f 100644 (file)
Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ
index b8ad4a3890100e5e90943c943600305f0e46c227..f2375ce4af1a11e14fe9988b4f849157e7fb98ee 100644 (file)
Binary files a/lib/jswingcore.jar and b/lib/jswingcore.jar differ
index fc4bf918bdd8e83395b3bc01dff976e7c1d6e95f..1510bf4e38114204f2d290129f67c7b72e4c83d4 100644 (file)
@@ -193,11 +193,11 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                // Get title, price and category id
                String title = product.getTitle();
                Float price = product.getPrice();
-               Long categoryId = product.getCategoryId();
+               Long id = product.getId();
                Boolean available = product.getAvailable();
 
                // Debug message
-               this.getLogger().debug(MessageFormat.format("title={0},price={1},categoryId={2},available={3}", title, price, categoryId, available)); //NOI18N
+               this.getLogger().debug(MessageFormat.format("title={0},price={1},id={2},available={3}", title, price, id, available)); //NOI18N
 
                // Check all fields
                if (null == title) {
@@ -209,10 +209,10 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz
                } else if (null == price) {
                        // "price" not set
                        throw new IllegalArgumentException("product price is not set."); //NOI18N
-               } else if (null == categoryId) {
+               } else if (null == id) {
                        // "title" not set
                        throw new IllegalArgumentException("product category id is not set."); //NOI18N
-               } else if (categoryId == 0) {
+               } else if (id == 0) {
                        // "title" not set
                        throw new IllegalArgumentException("product category id is zero."); //NOI18N
                } else if (null == available) {