]> git.mxchange.org Git - jjobs-war.git/commitdiff
Fixed JNDI names (maybe)
authorRoland Haeder <roland@mxchange.org>
Sat, 14 May 2016 13:16:35 +0000 (15:16 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 14 May 2016 13:16:35 +0000 (15:16 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jjobs/beans/phone/JobsAdminContactPhoneWebSessionBean.java
src/java/org/mxchange/jjobs/beans/resendlink/JobsResendLinkWebSessionBean.java
src/java/org/mxchange/jjobs/validator/emailaddress/JobsEmailAddressValidator.java

index ded322325abb24c9ce8c4e789dbd09132894f26f..4b6a92459c2fa7d7cceeeb72ccf6b36f496f5e80 100644 (file)
@@ -87,7 +87,7 @@ public class JobsAdminContactPhoneWebSessionBean extends BaseJobsController impl
                        Context context = new InitialContext();
 
                        // Try to lookup the beans
-                       this.adminRemoteBean = (AdminContactsPhoneSessionBeanRemote) context.lookup("java:global/PizzaService-ejb/admincontactphone!org.mxchange.jcontacts.phone.AdminContactsPhoneSessionBeanRemote"); //NOI18N
+                       this.adminRemoteBean = (AdminContactsPhoneSessionBeanRemote) context.lookup("java:global/jjobs-ejb/admincontactphone!org.mxchange.jcontacts.phone.AdminContactsPhoneSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw it again
                        throw new FaceletException(e);
index 33a5f591f67c564804f0d61a902f3f5b436a366b..1fb872f7acbe48110679bda2a53aa1d95805edb0 100644 (file)
@@ -58,7 +58,7 @@ public class JobsResendLinkWebSessionBean extends BaseJobsController implements
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.emailBean = (ResendLinkSessionBeanRemote) context.lookup("java:global/PizzaService-ejb/resendLink!org.mxchange.pizzaapplication.beans.resendlink.ResendLinkSessionBeanRemote"); //NOI18N
+                       this.emailBean = (ResendLinkSessionBeanRemote) context.lookup("java:global/jjobs-ejb/resendLink!org.mxchange.pizzaapplication.beans.resendlink.ResendLinkSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index b3889b59ef12cce4f828ff79764583550662bd8d..b2244a9e117b3c53792682b8fd99db7845b5f799 100644 (file)
@@ -59,7 +59,7 @@ public class JobsEmailAddressValidator extends BaseStringValidator implements Va
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.contactBean = (ContactSessionBeanRemote) context.lookup("java:global/PizzaService-ejb/contact!org.mxchange.jcontacts.contact.ContactSessionBeanRemote"); //NOI18N
+                       this.contactBean = (ContactSessionBeanRemote) context.lookup("java:global/jjobs-ejb/contact!org.mxchange.jcontacts.contact.ContactSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);