]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Mon, 7 Sep 2015 18:51:39 +0000 (20:51 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 7 Sep 2015 18:51:39 +0000 (20:51 +0200)
- updated jcore.jar, jcoreee.jar, jshop-core.jar jshop-ee-lib.jar
- got rid of some things that don't work in EJB container ... :-(
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
lib/jcoreee.jar
lib/jshop-core.jar
lib/jshop-ee-lib.jar
src/java/org/mxchange/pizzaapplication/beans/basket/PizzaServiceBasketWebBean.java
src/java/org/mxchange/pizzaapplication/beans/controller/PizzaServiceWebBean.java
src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerWebBean.java
src/java/org/mxchange/pizzaapplication/beans/data/PizzaServiceDataWebBean.java

index 636db5cb817c5a8422435600d1eaa83f399dcde9..1e4a78b02a1d9abd48a4b7cb5e7a53a763af1d77 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 7ab41e1c9a0e1344f49e1954003a1530883d66af..8ca2e654a8157faafa7d25129213826ad0fb455e 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index b803106f528e206a211bd74783f4ccc50ce249b9..9ee0879fac0a644866093a69ea4df2b803b3e93c 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index 7a715b3c2addcb98f27fdeacbdc33cb64f057ea0..a39d20b33853c0a6d41fe183a9470adc7cba7c79 100644 (file)
Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ
index 2c7709943bfa0b432ab3c6dc5a0add7e54b35777..05586ed717ed07818a4cf4f6ebb0465760b7af46 100644 (file)
@@ -18,7 +18,6 @@ package org.mxchange.pizzaapplication.beans.basket;
 
 import java.rmi.RemoteException;
 import javax.annotation.PostConstruct;
-import javax.ejb.EJB;
 import javax.enterprise.context.SessionScoped;
 import javax.faces.FacesException;
 import javax.inject.Named;
@@ -35,16 +34,16 @@ import org.mxchange.jshopeelib.beans.remote.basket.BasketSessionBeanRemote;
 @Named("basket")
 @SessionScoped
 public class PizzaServiceBasketWebBean extends BaseFrameworkBean implements PizzaBasketWebBean {
+
        /**
-        *  Basket bean
+        * Serial number
         */
-       @EJB
-       private final BasketSessionBeanRemote basket;
+       private static final long serialVersionUID = 5_476_347_320_198L;
 
        /**
-        * Serial number
+        *  Basket bean
         */
-       private static final long serialVersionUID = 5476347320198L;
+       private final BasketSessionBeanRemote basket;
 
        /**
         * Default constructor
index c85f8264fbd0735cfe68dbe8a48c94f38004ec98..8755c9f7d049b6493521ab60a5b1420bf1e4085b 100644 (file)
@@ -43,12 +43,11 @@ public class PizzaServiceWebBean extends BaseFrameworkBean implements PizzaWebBe
        /**
         * Serial id
         */
-       private static final long serialVersionUID = 58137539530279L;
+       private static final long serialVersionUID = 58_137_539_530_279L;
 
        /**
         * Remote bean
         */
-       //@EJB
        private final ShopSessionBeanRemote shop;
 
        /**
index 04ed6ffdc840699e60b934ae9e8c7f548ad72442..8b9af4d645e2b817ddca61ef0fa7c2af605c81c6 100644 (file)
@@ -17,7 +17,6 @@
 package org.mxchange.pizzaapplication.beans.customer;
 
 import javax.annotation.PostConstruct;
-import javax.ejb.EJB;
 import javax.enterprise.context.SessionScoped;
 import javax.inject.Named;
 import javax.naming.InitialContext;
@@ -36,12 +35,11 @@ public class PizzaServiceCustomerWebBean extends BaseFrameworkBean implements Cu
        /**
         * Serial number
         */
-       private static final long serialVersionUID = 542145347916L;
+       private static final long serialVersionUID = 542_145_347_916L;
 
        /**
         * Remote customer bean
         */
-       @EJB
        private final CustomerSessionBeanRemote customer;
 
        /**
index b4476b841b469bb7b96ad86338186b7ec8a62c23..aa977901a6bde6a8c7df36281c27eaa5e9513f8d 100644 (file)
@@ -18,7 +18,6 @@ package org.mxchange.pizzaapplication.beans.data;
 
 import java.util.List;
 import javax.annotation.PostConstruct;
-import javax.ejb.EJB;
 import javax.enterprise.context.ApplicationScoped;
 import javax.inject.Named;
 import javax.naming.InitialContext;
@@ -39,12 +38,11 @@ public class PizzaServiceDataWebBean extends BaseFrameworkBean implements DataWe
        /**
         * Serial number
         */
-       private static final long serialVersionUID = 835482364189L;
+       private static final long serialVersionUID = 835_482_364_189L;
 
        /**
         * Remote bean
         */
-       @EJB
        private final ShopDataBeanRemote data;
 
        /**