]> git.mxchange.org Git - jjobs-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sat, 26 Aug 2017 22:17:51 +0000 (00:17 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 26 Aug 2017 22:18:26 +0000 (00:18 +0200)
- renamed method

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jcontactsbusiness/basicdata/JobsBusinessDataSessionBean.java

index 04e8191d950fdc442466b30237d8cbce83a34b7e..b11172989a3fb5aabb8172b603f41f195783cc86 100644 (file)
@@ -56,7 +56,7 @@ public class JobsBusinessDataSessionBean extends BaseJobsDatabaseBean implements
        @Override
        public BusinessBasicData findBasicDataById (final Long companyDataId) throws BusinessDataNotFoundException {
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBusinessDataById: CALLED!", this.getClass().getSimpleName())); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBasicDataById: CALLED!", this.getClass().getSimpleName())); //NOI18N
 
                // Get query
                Query query = this.getEntityManager().createNamedQuery("SearchBusinessDataById", CompanyBasicData.class); //NOI18N
@@ -73,14 +73,14 @@ public class JobsBusinessDataSessionBean extends BaseJobsDatabaseBean implements
                        businessData = (BusinessBasicData) query.getSingleResult();
 
                        // Log trace message
-                       this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBusinessDataById: Found contact={1}", this.getClass().getSimpleName(), businessData)); //NOI18N
+                       this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBasicDataById: Found contact={1}", this.getClass().getSimpleName(), businessData)); //NOI18N
                } catch (final NoResultException ex) {
                        // No result found
                        throw new BusinessDataNotFoundException(companyDataId, ex);
                }
 
                // Trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBusinessDataById: businessData={1} - EXIT!", this.getClass().getSimpleName(), businessData)); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBasicDataById: businessData={1} - EXIT!", this.getClass().getSimpleName(), businessData)); //NOI18N
 
                // Return it
                return businessData;