]> git.mxchange.org Git - addressbook-mailer-ejb.git/commitdiff
implemented business methods findContactByEmailAddress() and isEmailAddressRegistered()
authorRoland Häder <roland@mxchange.org>
Fri, 13 May 2016 09:57:04 +0000 (11:57 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 13 May 2016 20:14:51 +0000 (22:14 +0200)
src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java

index 56f1cabf21a88bd19650f3b8e52062bd940a44d2..8b1aadda8e2e5aa293ca2feba7150b0b08a945f3 100644 (file)
@@ -52,6 +52,48 @@ public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean i
                throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
        }
 
+       @Override
+       public Contact findContactByEmailAddress (final String emailAddress) throws ContactNotFoundException {
+               // Log trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("findContactByEmailAddress: emailAddress={0} - CALLED!", emailAddress)); //NOI18N
+
+               // The parameter must be valid
+               if (null == emailAddress) {
+                       // Throw NPE
+                       throw new NullPointerException("emailAddress is null"); //NOI18N
+               } else if (emailAddress.isEmpty()) {
+                       // Not valid
+                       throw new IllegalArgumentException("emailAddress is empty"); //NOI18N
+               }
+
+               // Get query instance
+               Query query = this.getEntityManager().createNamedQuery("SearchContactByEmailAddress", UserContact.class); //NOI18N
+
+               // Set parameter
+               query.setParameter("emailAddress", emailAddress); //NOI18N
+
+               // Init contact instance
+               Contact contact;
+
+               // Try to find a result
+               try {
+                       // Find a single result
+                       contact = (Contact) query.getSingleResult();
+
+                       // Log trace message
+                       this.getLoggerBeanLocal().logTrace(MessageFormat.format("findContactByEmailAddress: Found contact={0}", contact)); //NOI18N
+               } catch (final NoResultException ex) {
+                       // No result found
+                       throw new ContactNotFoundException(emailAddress, ex);
+               }
+
+               // Log trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("findContactByEmailAddress: contact={0} - EXIT!", contact)); //NOI18N
+
+               // Return found instance
+               return contact;
+       }
+
        @Override
        public Contact findContactById (final Long contactId) throws ContactNotFoundException {
                // Log trace message
@@ -132,6 +174,43 @@ public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean i
                return emailAddresses;
        }
 
+       @Override
+       public boolean isEmailAddressRegistered (final String emailAddress) {
+               // Log trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("isEmailAddressRegistered: emailAddress={0} - CALLED!", emailAddress)); //NOI18N
+
+               // The email address should be valid
+               if (null == emailAddress) {
+                       // Is null
+                       throw new NullPointerException("emailAddress is null");
+               } else if (emailAddress.isEmpty()) {
+                       // Is empty
+                       throw new IllegalArgumentException("emailAddress is empty");
+               }
+
+               // Default is not found
+               boolean isFound = false;
+
+               try {
+                       // Ask other method for contact instance
+                       Contact contact = this.findContactByEmailAddress(emailAddress);
+
+                       // Log debug message
+                       this.getLoggerBeanLocal().logDebug(MessageFormat.format("isEmailAddressRegistered: Found contact={0} for emailAddress={1}", contact, emailAddress));
+
+                       // It is found ...
+                       isFound = true;
+               } catch (final ContactNotFoundException ex) {
+                       // @TODO Was not found, log exception for spam check?
+               }
+
+               // Log trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("isEmailAddressRegistered: isFound={0} - EXIT!", isFound));
+
+               // Return status
+               return isFound;
+       }
+
        @Override
        public Contact lookupContact (final Contact contact) {
                // Log trace message