]> git.mxchange.org Git - jfinancials-war.git/commitdiff
Possible JNDI names (with naming convention is strictly applied)
authorRoland Haeder <roland@mxchange.org>
Fri, 13 May 2016 20:39:47 +0000 (22:39 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 13 May 2016 20:39:47 +0000 (22:39 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/addressbook/beans/phone/AddressbookAdminContactPhoneWebRequestBean.java
src/java/org/mxchange/addressbook/beans/resendlink/AddressbookResendLinkWebSessionBean.java
src/java/org/mxchange/addressbook/validator/emailaddress/AddressbookEmailAddressValidator.java

index 503db8e2ef3343c129898280ee4c1b5d73418f44..fa26a625d23982c32aed8e78b92a028c8a88d3dc 100644 (file)
@@ -87,7 +87,7 @@ public class AddressbookAdminContactPhoneWebRequestBean extends BaseAddressbookC
                        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/addressbook-ejb/admincontactphone!org.mxchange.jcontacts.phone.AdminContactsPhoneSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw it again
                        throw new FaceletException(e);
index 3b30b982612f2dbc4e9764b776bb25ffa3944219..12aa9d72affbc1e202d5330f6f2d1acaaa803ae9 100644 (file)
@@ -58,7 +58,7 @@ public class AddressbookResendLinkWebSessionBean extends BaseAddressbookControll
                        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/addressbook-ejb/resendLink!org.mxchange.addressbook.beans.resendlink.ResendLinkSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index 5f98e5fa7c4b161033728058b7804a29a815414a..c6000f7fdf4ccb069fdeec9cb8f901c97715e031 100644 (file)
@@ -59,7 +59,7 @@ public class AddressbookEmailAddressValidator extends BaseStringValidator implem
                        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/addressbook-ejb/contact!org.mxchange.jcontacts.contact.ContactSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);