From: Roland Häder Date: Tue, 23 Aug 2016 13:03:00 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f68ed433ab2f5431c1099ed7608f0cf86e086053;p=addressbook-mailer-ejb.git Please cherry-pick: - copy all data from detached to managed instance before updating it - this needs to be done before the updated timestamp is being set to make sure it is not overwritten by old value (as copyAll() may do it) --- diff --git a/src/java/org/mxchange/jphone/phonenumbers/phone/AddressbookAdminPhoneSessionBean.java b/src/java/org/mxchange/jphone/phonenumbers/phone/AddressbookAdminPhoneSessionBean.java index 413ddcd..54d72f5 100644 --- a/src/java/org/mxchange/jphone/phonenumbers/phone/AddressbookAdminPhoneSessionBean.java +++ b/src/java/org/mxchange/jphone/phonenumbers/phone/AddressbookAdminPhoneSessionBean.java @@ -223,6 +223,7 @@ public class AddressbookAdminPhoneSessionBean extends BaseAddressbookDatabaseBea this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.updateFaxData: managedNumber.phoneId={1}", this.getClass().getSimpleName(), managedNumber.getPhoneId())); //NOI18N // Set updated timestamp + managedNumber.copyAll(faxNumber); managedNumber.setPhoneEntryUpdated(new GregorianCalendar()); // Trace message @@ -280,7 +281,8 @@ public class AddressbookAdminPhoneSessionBean extends BaseAddressbookDatabaseBea this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.updateLandLineData: managedNumber.phoneId={1}", this.getClass().getSimpleName(), managedNumber.getPhoneId())); //NOI18N // Set updated timestamp - landLineNumber.setPhoneEntryUpdated(new GregorianCalendar()); + managedNumber.copyAll(landLineNumber); + managedNumber.setPhoneEntryUpdated(new GregorianCalendar()); // Trace message this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateLandLineData: managedNumber={1} - EXIT!", this.getClass().getSimpleName(), managedNumber)); //NOI18N @@ -331,7 +333,8 @@ public class AddressbookAdminPhoneSessionBean extends BaseAddressbookDatabaseBea this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.updateMobileData: managedNumber.phoneId={1}", this.getClass().getSimpleName(), managedNumber.getPhoneId())); //NOI18N // Set updated timestamp - mobileNumber.setPhoneEntryUpdated(new GregorianCalendar()); + managedNumber.copyAll(mobileNumber); + managedNumber.setPhoneEntryUpdated(new GregorianCalendar()); // Trace message this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateMobileData: managedNumber={1} - EXIT!", this.getClass().getSimpleName(), managedNumber)); //NOI18N