import org.mxchange.addressbook.database.BaseAddressbookDatabaseBean;
import org.mxchange.jcontacts.contact.Contact;
import org.mxchange.jcontacts.contact.ContactSessionBeanRemote;
+import org.mxchange.jcontacts.contact.UserContact;
import org.mxchange.jphone.exceptions.PhoneNumberAlreadyLinkedException;
import org.mxchange.jphone.exceptions.PhoneNumberNotLinkedException;
import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
throw new IllegalArgumentException(MessageFormat.format("faxNumber.phoneNumber={0} is not valid", faxNumber.getPhoneNumber())); //NOI18N
}
- // Set fax number in contact
- contact.setContactFaxNumber(faxNumber);
-
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Set fax number in contact
+ managedContact.setContactFaxNumber(faxNumber);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingFaxNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingFaxNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
throw new IllegalArgumentException(MessageFormat.format("landLineNumber.phoneNumber={0} is not valid", landLineNumber.getPhoneNumber())); //NOI18N
}
- // Set land-line number in contact
- contact.setContactLandLineNumber(landLineNumber);
-
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Set landline number in contact
+ managedContact.setContactLandLineNumber(landLineNumber);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingLandLineNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingLandLineNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
throw new IllegalArgumentException(MessageFormat.format("mobileNumber.mobileProvider.providerId={0} is not valid", mobileNumber.getMobileProvider().getProviderId())); //NOI18N
}
- // Set mobile number in contact
- contact.setContactMobileNumber(mobileNumber);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
-
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Set landline number in contact
+ managedContact.setContactMobileNumber(mobileNumber);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingMobileNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkExistingMobileNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
// Set created instance
faxNumber.setPhoneEntryCreated(new GregorianCalendar());
- // Set fax number in contact
- contact.setContactFaxNumber(faxNumber);
+ // Persist it
+ this.getEntityManager().persist(faxNumber);
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Set fax number in contact
+ managedContact.setContactFaxNumber(faxNumber);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewFaxNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewFaxNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
// Set created instance
landLineNumber.setPhoneEntryCreated(new GregorianCalendar());
- // Set landLine number in contact
- contact.setContactLandLineNumber(landLineNumber);
+ // Persist it
+ this.getEntityManager().persist(landLineNumber);
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Set land-line number in contact
+ managedContact.setContactLandLineNumber(landLineNumber);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewLandLineNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewLandLineNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
// Set created instance
mobileNumber.setPhoneEntryCreated(new GregorianCalendar());
- // Set mobile number in contact
- contact.setContactMobileNumber(mobileNumber);
+ // Persist it
+ this.getEntityManager().persist(mobileNumber);
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Set land-line number in contact
+ managedContact.setContactMobileNumber(mobileNumber);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewMobileNumberWithContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.linkNewMobileNumberWithContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
throw new IllegalArgumentException(MessageFormat.format("contact.contactFaxNumber.phoneId={0} and faxNumber.phoneId={1} are not the same.", contact.getContactFaxNumber().getPhoneId(), faxNumber.getPhoneId())); //NOI18N
}
- // Remove it from contact
- contact.setContactFaxNumber(null);
-
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Remove it from contact
+ managedContact.setContactFaxNumber(null);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkFaxDataFromContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkFaxDataFromContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
throw new IllegalArgumentException(MessageFormat.format("contact.contactLandLineNumber.phoneId={0} and landLineNumber.phoneId={1} are not the same.", contact.getContactLandLineNumber().getPhoneId(), landLineNumber.getPhoneId())); //NOI18N
}
- // Remove it from contact
- contact.setContactLandLineNumber(null);
-
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Remove it from contact
+ managedContact.setContactLandLineNumber(null);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkLandLineDataFromContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkLandLineDataFromContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
@Override
throw new IllegalArgumentException(MessageFormat.format("contact.contactMobileNumber.phoneId={0} and mobileNumber.phoneId={1} are not the same.", contact.getContactMobileNumber().getPhoneId(), mobileNumber.getPhoneId())); //NOI18N
}
- // Remove it from contact
- contact.setContactMobileNumber(null);
-
- // Detach all phone entries before persisting it
- this.detachAllContactPhoneEntries(contact);
+ // Find contact
+ Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
- // Update database
- Contact updatedContact = this.contactBean.updateContactData(contact);
+ // Remove it from contact
+ managedContact.setContactLandLineNumber(null);
// Trace message
- this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkMobileDataFromContact: updatedContact={1} - EXIT!", this.getClass().getSimpleName(), updatedContact)); //NOI18N
+ this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkMobileDataFromContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N
// Return it
- return updatedContact;
+ return managedContact;
}
}