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

index 503875d87c6d19d2ce9b1ca8638fbda70807ab3d..d2b555b8bbbac5ef9e8e6e279a03f1075494831c 100644 (file)
@@ -308,7 +308,7 @@ public class JobsAdminBusinessDataWebRequestBean extends BaseJobsController impl
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.adminBusinessDataBean = (BusinessDataAdminSessionBeanRemote) context.lookup("java:global/jjobs-ejb/adminBusinessData!org.mxchange.jcontactsbusiness.BusinessDataAdminSessionBeanRemote"); //NOI18N
+                       this.adminBusinessDataBean = (BusinessDataAdminSessionBeanRemote) context.lookup("java:global/jjobs-ejb/adminBusinessData!org.mxchange.jcontactsbusiness.basicdata.BusinessDataAdminSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index a8b3f63ea7421d77a218a2241e15050d59910919..c550e33e3b4690ab52ba0ceabdc1d7e3c8856330 100644 (file)
@@ -303,7 +303,7 @@ public class JobsBusinessDataWebSessionBean extends BaseJobsController implement
                        Context context = new InitialContext();
 
                        // Try to lookup
-                       this.businessDataBean = (BusinessDataSessionBeanRemote) context.lookup("java:global/jjobs-ejb/businessData!org.mxchange.jcontactsbusiness.BusinessDataSessionBeanRemote"); //NOI18N
+                       this.businessDataBean = (BusinessDataSessionBeanRemote) context.lookup("java:global/jjobs-ejb/businessData!org.mxchange.jcontactsbusiness.basicdata.BusinessDataSessionBeanRemote"); //NOI18N
                } catch (final NamingException e) {
                        // Throw again
                        throw new FaceletException(e);
index ded28be27e3b1d6b7b132fd739441a1fde8d1374..7c88de36d00eb78a05ae0501ecc712b0b6077308 100644 (file)
@@ -69,7 +69,7 @@ public class JobsBusinessContactConverter implements Converter {
                                Context initialContext = new InitialContext();
 
                                // ... and user controller
-                               JobsBusinessContactConverter.BUSINESS_CONTACT_BEAN = (BusinessDataSessionBeanRemote) initialContext.lookup("java:global/jjobs-ejb/businessData!org.mxchange.jcontactsbusiness.BusinessDataSessionBeanRemote"); //NOI18N
+                               JobsBusinessContactConverter.BUSINESS_CONTACT_BEAN = (BusinessDataSessionBeanRemote) initialContext.lookup("java:global/jjobs-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