]> git.mxchange.org Git - jjobs-war.git/commitdiff
need splitting as well ...
authorRoland Haeder <roland@mxchange.org>
Wed, 2 Mar 2016 20:59:47 +0000 (21:59 +0100)
committerRoland Haeder <roland@mxchange.org>
Wed, 2 Mar 2016 20:59:47 +0000 (21:59 +0100)
src/java/org/mxchange/jjobs/beans/addressbook/AddressbookWebSessionBean.java
src/java/org/mxchange/jjobs/beans/login/UserLoginWebSessionBean.java
src/java/org/mxchange/jjobs/beans/register/UserRegisterWebSessionBean.java
src/java/org/mxchange/jjobs/beans/user/UserWebSessionBean.java

index 8a26bdd66926c7304180cb0d49ae5d1aea04e1b0..871276603c1f85a73dc75b878370421e02fcd921 100644 (file)
@@ -118,7 +118,7 @@ public class AddressbookWebSessionBean implements AddressbookWebSessionControlle
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.addressbookBean = (AddressbookSessionBeanRemote) context.lookup("ejb/stateless-addressbook"); //NOI18N
+                       this.addressbookBean = (AddressbookSessionBeanRemote) context.lookup("ejb/stateless-jjobs-adr"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index 6bd77670481fdb7f7494cbfec86fb37502d5b97d..b569fbae800fa5ceebf6cba78af51b466beb5ce4 100644 (file)
@@ -97,7 +97,7 @@ public class UserLoginWebSessionBean implements UserLoginWebSessionController {
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.loginBean = (UserLoginSessionBeanRemote) context.lookup("ejb/stateless-login"); //NOI18N
+                       this.loginBean = (UserLoginSessionBeanRemote) context.lookup("ejb/stateless-jjobs-login"); //NOI18N
                } catch (final NamingException ex) {
                        // Continue to throw
                        throw new FaceletException(ex);
index 97857f45fd32d2665fa842fe819f143297266690..0e1cd9e24f5f47a0f104d01b69a4ec53a126f7c1 100644 (file)
@@ -78,7 +78,7 @@ public class UserRegisterWebSessionBean implements UserRegisterWebSessionControl
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.registerBean = (UserRegistrationSessionBeanRemote) context.lookup("ejb/stateless-register"); //NOI18N
+                       this.registerBean = (UserRegistrationSessionBeanRemote) context.lookup("ejb/stateless-jjobs-register"); //NOI18N
                } catch (final NamingException ex) {
                        // Continue to throw
                        throw new FaceletException(ex);
index 59a9ff3052a09ad4817facf47761e854ac41e312..2fef5a9aa05fd7e122afedf5fd137995144a9df0 100644 (file)
@@ -231,7 +231,7 @@ public class UserWebSessionBean implements UserWebSessionController {
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.userBean = (UserSessionBeanRemote) context.lookup("ejb/stateless-user"); //NOI18N
+                       this.userBean = (UserSessionBeanRemote) context.lookup("ejb/stateless-jjobs-user"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);