]> git.mxchange.org Git - jfinancials-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Tue, 19 Sep 2017 20:35:27 +0000 (22:35 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 19 Sep 2017 20:35:27 +0000 (22:35 +0200)
- implemented business method findBranchOfficeById()
- fixed mobileProvider EJB name (which is part of portable name)

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jcontactsbusiness/model/branchoffice/FinancialsBranchOfficeSessionBean.java
src/java/org/mxchange/jphone/model/phonenumbers/mobileprovider/FinancialsMobileProviderSingletonBean.java

index fe6647beb710896874509bb4a474a42d56f2fd42..21971f099a89742c24997decaf09f798ed36d6d5 100644 (file)
@@ -19,7 +19,9 @@ package org.mxchange.jcontactsbusiness.model.branchoffice;
 import java.text.MessageFormat;
 import java.util.List;
 import javax.ejb.Stateless;
+import javax.persistence.NoResultException;
 import javax.persistence.Query;
+import org.mxchange.jcontactsbusiness.exceptions.branchoffice.BranchOfficeNotFoundException;
 import org.mxchange.jfinancials.database.BaseFinancialsDatabaseBean;
 
 /**
@@ -54,4 +56,37 @@ public class FinancialsBranchOfficeSessionBean extends BaseFinancialsDatabaseBea
                return list;
        }
 
+       @Override
+       public BranchOffice findBranchOfficeById (final Long branchOfficeId) throws BranchOfficeNotFoundException {
+               // Trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBranchOfficeById: CALLED!", this.getClass().getSimpleName())); //NOI18N
+
+               // Get query
+               final Query query = this.getEntityManager().createNamedQuery("SearchBranchOfficeById", CompanyBranchOffice.class); //NOI18N
+
+               // Set parameter
+               query.setParameter("branchOfficeId", branchOfficeId); //NOI18N
+
+               // Get single instance
+               final BranchOffice branchOffice;
+
+               // Try to find a result
+               try {
+                       // Find a single result
+                       branchOffice = (BranchOffice) query.getSingleResult();
+
+                       // Log trace message
+                       this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBranchOfficeById: Found branchOffice={1}", this.getClass().getSimpleName(), branchOffice)); //NOI18N
+               } catch (final NoResultException ex) {
+                       // No result found
+                       throw new BranchOfficeNotFoundException(branchOfficeId, ex);
+               }
+
+               // Trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.findBranchOfficeById: branchOffice={1} - EXIT!", this.getClass().getSimpleName(), branchOffice)); //NOI18N
+
+               // Return it
+               return branchOffice;
+       }
+
 }
index ed4387d4f9bde87655d537da08845ee9a9f13d57..4208c687701f253f62eaf41eb3087e620297b1ba 100644 (file)
@@ -29,7 +29,7 @@ import org.mxchange.jfinancials.database.BaseFinancialsDatabaseBean;
  * @author Roland Häder<roland@mxchange.org>
  */
 @Startup
-@Singleton (name = "mobileprovider", description = "A singleton session-scoped bean for SMS provider informations")
+@Singleton (name = "mobileProvider", description = "A singleton session-scoped bean for SMS provider informations")
 public class FinancialsMobileProviderSingletonBean extends BaseFinancialsDatabaseBean implements MobileProviderSingletonBeanRemote {
 
        /**