From f52c9f891c097177cf1f36808241dca3fef171e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 16 Aug 2016 10:23:14 +0200 Subject: [PATCH] updated jar(s)Renaming season has started: - renamed cellphone to mobile (all occurences) - let's don't discrimite other mobile phones, right? --- .../jcontacts/contact/ContactSessionBeanRemote.java | 6 +++--- .../phone/AdminContactsPhoneSessionBeanRemote.java | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/org/mxchange/jcontacts/contact/ContactSessionBeanRemote.java b/src/org/mxchange/jcontacts/contact/ContactSessionBeanRemote.java index 94b34ba..587f9a3 100644 --- a/src/org/mxchange/jcontacts/contact/ContactSessionBeanRemote.java +++ b/src/org/mxchange/jcontacts/contact/ContactSessionBeanRemote.java @@ -53,7 +53,7 @@ public interface ContactSessionBeanRemote extends Serializable { * Updates given contact data *

* @param contact Contact data to update - * @param isCellphoneUnlinked Whether a cellphone entry has been unlinked in + * @param isMobileUnlinked Whether a mobile entry has been unlinked in * contact instance * @param isLandlineUnlinked Whether a land-line entry has been unlinked in * contact instance @@ -62,11 +62,11 @@ public interface ContactSessionBeanRemote extends Serializable { *

* @return Updated contact instance */ - Contact updateContactData (final Contact contact, final boolean isCellphoneUnlinked, final boolean isLandlineUnlinked, final boolean isFaxUnlinked); + Contact updateContactData (final Contact contact, final boolean isMobileUnlinked, final boolean isLandlineUnlinked, final boolean isFaxUnlinked); /** * Updates given contact in database. Please note that the id number must be - * set. This method should also make sure that cellphone, land-line and fix + * set. This method should also make sure that mobile, land-line and fix * numbers are updated, too. *

* @param contact Contact to update diff --git a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java index 3d0b1a9..857246c 100644 --- a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java +++ b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java @@ -32,17 +32,17 @@ import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber; public interface AdminContactsPhoneSessionBeanRemote extends Serializable { /** - * Unlinks cell phone data from given contact and returns the updated + * Unlinks mobile data from given contact and returns the updated * (detached?) version. *

- * @param contact Contact to unlink cell phone instance - * @param cellphoneNumber Cell phone number being unlinked + * @param contact Contact to unlink mobile instance + * @param mobileNumber Mobile number being unlinked *

* @return Updated contact instance *

- * @throws MobileNumberNotLinkedException If a cell phone instance is not - * linked (null) with this contact + * @throws MobileNumberNotLinkedException If a mobile instance is not linked + * (null) with this contact */ - Contact unlinkCellphoneDataFromContact (final Contact contact, final DialableMobileNumber cellphoneNumber) throws MobileNumberNotLinkedException; + Contact unlinkMobileDataFromContact (final Contact contact, final DialableMobileNumber mobileNumber) throws MobileNumberNotLinkedException; } -- 2.39.2