]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Opps, copied to much ...
authorRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 11:51:51 +0000 (13:51 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 11:51:51 +0000 (13:51 +0200)
src/java/org/mxchange/jshopcore/model/category/PizzaCategoryConverter.java
src/java/org/mxchange/pizzaapplication/beans/basket/PizzaBasketWebSessionBean.java
src/java/org/mxchange/pizzaapplication/beans/customer/PizzaCustomerWebSessionBean.java
src/java/org/mxchange/pizzaapplication/beans/product/PizzaAdminProductWebRequestBean.java
src/java/org/mxchange/pizzaapplication/beans/shop/PizzaShopWebApplicationBean.java

index 677373e12170e34e8ad76a1eb0a7fd7853f9aef2..bbd6116e6e9ba9453f07c4cf2c02d124248e5226 100644 (file)
@@ -58,7 +58,7 @@ public class PizzaCategoryConverter implements Converter {
                        Context context = new InitialContext();
 
                        // Lookup category bean
-                       this.categoryBean = (CategorySessionBeanRemote) context.lookup("java:global/jshop-ejb/category, java:global/jshop-ejb/category!org.mxchange.jshopcore.model.category.CategorySessionBeanRemote"); //NOI18N
+                       this.categoryBean = (CategorySessionBeanRemote) context.lookup("java:global/jshop-ejb/category!org.mxchange.jshopcore.model.category.CategorySessionBeanRemote"); //NOI18N
 
                        // Lookup logger
                        this.loggerBeanLocal = (LoggerBeanLocal) context.lookup("java:global/jcore-logger-ejb/logger!org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal"); //NOI18N
index 7093a3f3730b55838fb7888858e226fe8266804e..2d4db1b60a1cf881e90cd9f55a468d5b21813649 100644 (file)
@@ -80,7 +80,7 @@ public class PizzaBasketWebSessionBean implements PizzaBasketWebSessionControlle
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.basketBean = (BasketSessionBeanRemote) context.lookup("java:global/jshop-ejb/basket, java:global/jshop-ejb/basket!org.mxchange.jshopcore.model.basket.BasketSessionBeanRemote"); //NOI18N
+                       this.basketBean = (BasketSessionBeanRemote) context.lookup("java:global/jshop-ejb/basket!org.mxchange.jshopcore.model.basket.BasketSessionBeanRemote"); //NOI18N
                } catch (final NamingException ex) {
                        // Continue to throw
                        throw new FaceletException(ex);
index 494b9d94a0ed859c23163c7009f849dc6b92ff0f..11afb2f61e99125bfb5138f06f8e6a2712ad8d6d 100644 (file)
@@ -131,7 +131,7 @@ public class PizzaCustomerWebSessionBean implements PizzaCustomerWebSessionContr
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.customerBean = (CustomerSessionBeanRemote) context.lookup("java:global/jshop-ejb/shopCustomer, java:global/jshop-ejb/shopCustomer!org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote"); //NOI18N
+                       this.customerBean = (CustomerSessionBeanRemote) context.lookup("java:global/jshop-ejb/shopCustomer!org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index b8ebc234097eb87b13942e296e37b55689bc85dd..8fe2033f89f3dac98d1f74c8edf8b2225d924cd4 100644 (file)
@@ -90,7 +90,7 @@ public class PizzaAdminProductWebRequestBean implements PizzaAdminProductWebRequ
                        Context context = new InitialContext();
 
                        // Try to lookup the bean
-                       this.productRemoteBean = (AdminProductSessionBeanRemote) context.lookup("java:global/jshop-ejb/admin_product, java:global/jshop-ejb/admin_product!org.mxchange.jshopcore.model.product.AdminProductSessionBeanRemote"); //NOI18N
+                       this.productRemoteBean = (AdminProductSessionBeanRemote) context.lookup("java:global/jshop-ejb/admin_product!org.mxchange.jshopcore.model.product.AdminProductSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw it again
                        throw new FaceletException(e);
index 217fbbddb31b65c35a81d982812f5cc34aea0998..29dbdfb2a5260d62b4355b8a4051e4516cd4f424 100644 (file)
@@ -104,7 +104,7 @@ public class PizzaShopWebApplicationBean implements PizzaShopWebApplicationContr
                        Context context = new InitialContext();
 
                        // Try to lookup the bean
-                       CategorySessionBeanRemote categoryBean = (CategorySessionBeanRemote) context.lookup("java:global/jshop-ejb/category, java:global/jshop-ejb/category!org.mxchange.jshopcore.model.category.CategorySessionBeanRemote"); //NOI18N
+                       CategorySessionBeanRemote categoryBean = (CategorySessionBeanRemote) context.lookup("java:global/jshop-ejb/category!org.mxchange.jshopcore.model.category.CategorySessionBeanRemote"); //NOI18N
 
                        // Get all categories
                        this.categories = categoryBean.getAllCategories();