]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
fixed JNDI name
authorRoland Häder <roland@mxchange.org>
Mon, 25 Apr 2016 14:17:00 +0000 (16:17 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 27 Apr 2016 19:57:57 +0000 (21:57 +0200)
src/java/de/chotime/jratecalc/beans/customer/RateCalcAdminCustomerWebRequestBean.java

index dd6c4b5fe816f47ccac4e7b8c26310acae92d678..200bec9a1029000e25a08853835b0ddcef3a851f 100644 (file)
@@ -43,7 +43,7 @@ public class RateCalcAdminCustomerWebRequestBean implements RateCalcAdminCustome
        private static final long serialVersionUID = 12_487_062_487_527_913L;
 
        /**
-        * Customer EJB
+        * Administrative customer EJB
         */
        private RateCalcAdminCustomerSessionBeanRemote adminCustomerBean;
 
@@ -62,7 +62,7 @@ public class RateCalcAdminCustomerWebRequestBean implements RateCalcAdminCustome
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.adminCustomerBean = (RateCalcAdminCustomerSessionBeanRemote) context.lookup("java:global/jratecalc-ejb/admincustomer!de.chotime.model.customer.RateCalcAdminCustomerSessionBeanRemote"); //NOI18N
+                       this.adminCustomerBean = (RateCalcAdminCustomerSessionBeanRemote) context.lookup("java:global/jratecalc-ejb/admincustomer!de.chotime.jratecalc.model.customer.RateCalcAdminCustomerSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);