]> git.mxchange.org Git - addressbook-war.git/commitdiff
deeper namespace 'basicdata' has been added
authorRoland Häder <roland@mxchange.org>
Fri, 18 Aug 2017 21:08:24 +0000 (23:08 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 18 Aug 2017 21:08:24 +0000 (23:08 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/addressbook/beans/businessdata/AddressbookAdminBusinessDataWebRequestBean.java
src/java/org/mxchange/addressbook/beans/businessdata/AddressbookBusinessDataWebSessionBean.java
src/java/org/mxchange/addressbook/converter/businesscontact/AddressbookBusinessContactConverter.java

index a028778a517ff950d77eb773a618d0d626964c2b..b11b54a771d336ef2fdcd20a11b1025db44957cf 100644 (file)
@@ -308,7 +308,7 @@ public class AddressbookAdminBusinessDataWebRequestBean extends BaseAddressbookC
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.adminBusinessDataBean = (BusinessDataAdminSessionBeanRemote) context.lookup("java:global/addressbook-ejb/adminBusinessData!org.mxchange.jcontactsbusiness.BusinessDataAdminSessionBeanRemote"); //NOI18N
+                       this.adminBusinessDataBean = (BusinessDataAdminSessionBeanRemote) context.lookup("java:global/addressbook-ejb/adminBusinessData!org.mxchange.jcontactsbusiness.basicdata.BusinessDataAdminSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index b986b7e259c0aa6e2bba5dd3686c328b419fabab..11e01f01cde871ed2ef2d1262b74f29ed99880de 100644 (file)
@@ -303,7 +303,7 @@ public class AddressbookBusinessDataWebSessionBean extends BaseAddressbookContro
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.businessDataBean = (BusinessDataSessionBeanRemote) context.lookup("java:global/addressbook-ejb/businessData!org.mxchange.jcontactsbusiness.BusinessDataSessionBeanRemote"); //NOI18N
+                       this.businessDataBean = (BusinessDataSessionBeanRemote) context.lookup("java:global/addressbook-ejb/businessData!org.mxchange.jcontactsbusiness.basicdata.BusinessDataSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index 92abcc6b140046aeb18fb0e7bb1d7226ea0581b1..9b65f68110737b677354e01e4e451dcb98558a7a 100644 (file)
@@ -69,7 +69,7 @@ public class AddressbookBusinessContactConverter implements Converter {
                                Context initialContext = new InitialContext();
 
                                // ... and user controller
-                               AddressbookBusinessContactConverter.BUSINESS_CONTACT_BEAN = (BusinessDataSessionBeanRemote) initialContext.lookup("java:global/addressbook-ejb/businessData!org.mxchange.jcontactsbusiness.BusinessDataSessionBeanRemote"); //NOI18N
+                               AddressbookBusinessContactConverter.BUSINESS_CONTACT_BEAN = (BusinessDataSessionBeanRemote) initialContext.lookup("java:global/addressbook-ejb/businessData!org.mxchange.jcontactsbusiness.basicdata.BusinessDataSessionBeanRemote"); //NOI18N
                        } catch (final NamingException ex) {
                                // Continue to throw it
                                throw new ConverterException(MessageFormat.format("initialContext.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N