package org.mxchange.jcontacts.contact;
import java.text.MessageFormat;
+import java.util.Iterator;
import java.util.List;
import javax.ejb.Stateless;
import javax.persistence.NoResultException;
import javax.persistence.Query;
+import org.mxchange.addressbook.database.BaseAddressbookDatabaseBean;
+import org.mxchange.jcontacts.contact.utils.ContactUtils;
+import org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException;
import org.mxchange.jcontacts.exceptions.ContactNotFoundException;
-import org.mxchange.jcoreee.database.BaseDatabaseBean;
/**
* A contact EJB
* <p>
* @author Roland Haeder<roland@mxchange.org>
*/
-@Stateless (name = "contact", mappedName = "ejb/stateless-addressbook-contact", description = "A bean handling contact data")
-public class AddressbookContactSessionBean extends BaseDatabaseBean implements ContactSessionBeanRemote {
+@Stateless (name = "contact", description = "A bean handling contact data")
+public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean implements ContactSessionBeanRemote {
/**
* Serial number
public AddressbookContactSessionBean () {
}
+ @Override
+ public Contact addContact (Contact contact) throws ContactAlreadyAddedException {
+ throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ }
+
@Override
public Contact findContactById (final Long contactId) throws ContactNotFoundException {
// Log trace message
return emailAddresses;
}
+ @Override
+ public boolean isContactFound (final Contact contact) {
+ // Log trace message
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("isContactFound: contact={0} - CALLED!", contact)); //NOI18N
+
+ // Parameter should be valid
+ if (null == contact) {
+ // Throw NPE
+ throw new NullPointerException("contact is null"); //NOI18N
+ } else if (contact.getContactId() > 0) {
+ try {
+ // Id set, ask other method
+ return (this.findContactById(contact.getContactId()) instanceof Contact);
+ } catch (final ContactNotFoundException ex) {
+ // Not found, should not happen
+ throw new IllegalStateException(MessageFormat.format("contact.contactId={0} is set, but not found.", contact.getContactId()), ex); //NOI18N
+ }
+ }
+
+ // Default is not found
+ boolean isFound = false;
+
+ // Get whole list
+ List<Contact> contacts = this.getAllContacts();
+
+ // Is the list empty?
+ if (contacts.isEmpty()) {
+ // Then abort here
+ this.getLoggerBeanLocal().logTrace("isContactFound: No contacts registered, returning 'false' ..."); //NOI18N
+ return false;
+ }
+
+ // Get iterator
+ Iterator<Contact> iterator = contacts.iterator();
+
+ // Loop through all
+ while (iterator.hasNext()) {
+ // Get contact
+ Contact next = iterator.next();
+
+ // Is same contact?
+ if (ContactUtils.isSameContact(contact, next)) {
+ // Found it
+ isFound = true;
+ break;
+ }
+ }
+
+ // Return status
+ return isFound;
+ }
+
+ @Override
+ public Contact lookupContact (Contact contact) {
+ throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ }
+
@Override
public Contact updateContactData (final Contact contact, final boolean isCellphoneUnlinked, final boolean isLandlineUnlinked, final boolean isFaxUnlinked) {
- throw new UnsupportedOperationException("Not supported yet."); //NOI18N
+ // Log trace message
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("updateContactData: contact={0},isCellphoneUnlinked={1},isLandlineUnlinked={2},isFaxUnlinked={3} - CALLED!", contact, isCellphoneUnlinked, isLandlineUnlinked, isFaxUnlinked)); //NOI18N
+
+ // The contact instance must be valid
+ if (null == contact) {
+ // Throw NPE again
+ throw new NullPointerException("contact is null"); //NOI18N
+ } else if (contact.getContactId() == null) {
+ // Throw NPE again
+ throw new NullPointerException("contact.contactId is null"); //NOI18N //NOI18N
+ } else if (contact.getContactId() < 1) {
+ // Not valid
+ throw new IllegalStateException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
+ }
+
+ // Set updated timestamp
+ this.setAllContactPhoneEntriesUpdated(contact, isCellphoneUnlinked, isLandlineUnlinked, isFaxUnlinked);
+
+ // Merge cellphone, land-line and fix
+ Contact detachedContact = this.mergeContactData(contact);
+
+ // Trace message
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("updateContactData: detachedContact={0} - EXIT!", detachedContact)); //NOI18N
+
+ // Return it
+ return detachedContact;
+ }
+
+ @Override
+ public Contact updateContactData (final Contact contact) {
+ // Log trace message
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("updateContactData: contact={0} - CALLED!", contact)); //NOI18N
+
+ // The contact instance must be valid
+ if (null == contact) {
+ // Throw NPE again
+ throw new NullPointerException("contact is null"); //NOI18N
+ } else if (contact.getContactId() == null) {
+ // Throw NPE again
+ throw new NullPointerException("contact.contactId is null"); //NOI18N //NOI18N
+ } else if (contact.getContactId() < 1) {
+ // Not valid
+ throw new IllegalStateException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
+ }
+
+ // Is cell phone/land-line/fax number unlinked?
+ boolean isCellphoneUnlinked = (contact.getContactCellphoneNumber() == null);
+ boolean isLandLineUnlinked = (contact.getContactLandLineNumber() == null);
+ boolean isFaxUnlinked = (contact.getContactFaxNumber() == null);
+
+ // Call other Method
+ Contact detachedContact = this.updateContactData(contact, isCellphoneUnlinked, isLandLineUnlinked, isFaxUnlinked);
+
+ // Trace message
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("updateContactData: detachedContact={0} - EXIT!", detachedContact)); //NOI18N
+
+ // Return it
+ return detachedContact;
}
}