]> git.mxchange.org Git - jjobs-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Wed, 8 Apr 2020 22:39:04 +0000 (00:39 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 17 Apr 2020 16:40:47 +0000 (18:40 +0200)
- rewrote to AllContacts + iteration of whole list to avoid SearchContact JPQL

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jcontacts/model/contact/JobsAdminContactSessionBean.java

index 78816af9b5b3da933923f7ea055c4b4e936ef322..fd38cf2cf8cf3d57b5e63775db0d710d5bf3e2d9 100644 (file)
@@ -18,9 +18,9 @@ package org.mxchange.jcontacts.model.contact;
 
 import java.text.MessageFormat;
 import java.util.Date;
+import java.util.Objects;
+import javax.ejb.EJB;
 import javax.ejb.Stateless;
-import javax.persistence.NoResultException;
-import javax.persistence.Query;
 import org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException;
 import org.mxchange.jcontacts.exceptions.ContactNotFoundException;
 import org.mxchange.jjobs.enterprise.BaseJobsEnterpriseBean;
@@ -38,6 +38,12 @@ public class JobsAdminContactSessionBean extends BaseJobsEnterpriseBean implemen
         */
        private static final long serialVersionUID = 542_145_347_916L;
 
+       /**
+        * EJB for general contact purposes
+        */
+       @EJB (lookup = "java:global/jfinancials-ejb/contact!org.mxchange.jcontacts.model.contact.ContactSessionBeanRemote")
+       private ContactSessionBeanRemote contactBean;
+
        /**
         * Default constructor
         */
@@ -120,25 +126,19 @@ public class JobsAdminContactSessionBean extends BaseJobsEnterpriseBean implemen
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.isContactRegistered: contact={1} - CALLED!", this.getClass().getSimpleName(), contact)); //NOI18N
 
-               // Create query
-               final Query query = this.getEntityManager().createNamedQuery("SearchContact"); //NOI18N
-
-               // Set parameter
-               query.setParameter("contact", contact); //NOI18N
-               query.setMaxResults(1);
-
                // Default is not found
                boolean isFound = false;
 
-               // Try it
-               try {
-                       // Try to find instance
-                       final Contact dummy = (Contact) query.getSingleResult();
+               // Fest all entries and iterate over them
+               for (final Contact currentContact : this.contactBean.allContacts()) {
+                       // Is found?
+                       if (Objects.equals(contact, currentContact)) {
+                               // Yes, found the same
+                               isFound = true;
 
-                       // Mark as found
-                       isFound = true;
-               } catch (final NoResultException e) {
-                       // No result found
+                               // Abort loop
+                               break;
+                       }
                }
 
                // Trace message