]> git.mxchange.org Git - jjobs-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sat, 5 Nov 2022 04:38:19 +0000 (05:38 +0100)
committerRoland Häder <roland@mxchange.org>
Sat, 5 Nov 2022 04:43:35 +0000 (05:43 +0100)
- renamed *Cellphone* to *Mobile*

src/java/org/mxchange/jcontacts/model/contact/JobsContactSessionBean.java

index dd0f365dad7b478a84dcfdf15956498b4065252b..e5c54b77ed8a6ca6bfa24e60b1ee2766db234c71 100644 (file)
@@ -65,9 +65,9 @@ public class JobsContactSessionBean extends BaseJobsEnterpriseBean implements Co
        }
 
        @Override
-       public Contact updateContactData (final Contact contact, final boolean isCellphoneUnlinked, final boolean isLandlineUnlinked, final boolean isFaxUnlinked) {
+       public Contact updateContactData (final Contact contact, final boolean isMobileUnlinked, final boolean isLandlineUnlinked, final boolean isFaxUnlinked) {
                // Log trace message
-               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: contact={1},isCellphoneUnlinked={2},isLandlineUnlinked={3},isFaxUnlinked={4} - CALLED!", this.getClass().getSimpleName(), contact, isCellphoneUnlinked, isLandlineUnlinked, isFaxUnlinked)); //NOI18N
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.updateContactData: contact={1},isMobileUnlinked={2},isLandlineUnlinked={3},isFaxUnlinked={4} - CALLED!", this.getClass().getSimpleName(), contact, isMobileUnlinked, isLandlineUnlinked, isFaxUnlinked)); //NOI18N
 
                // The contact instance must be valid
                if (null == contact) {
@@ -82,7 +82,7 @@ public class JobsContactSessionBean extends BaseJobsEnterpriseBean implements Co
                }
 
                // Set updated timestamp
-               this.setAllContactPhoneEntriesUpdated(contact, isCellphoneUnlinked, isLandlineUnlinked, isFaxUnlinked);
+               this.setAllContactPhoneEntriesUpdated(contact, isMobileUnlinked, isLandlineUnlinked, isFaxUnlinked);
 
                // Merge mobile, land-line and fix
                final Contact detachedContact = this.mergeContactData(contact);