]> git.mxchange.org Git - jcontacts-lib.git/commitdiff
updated jar(s)Renaming season has started:
authorRoland Häder <roland@mxchange.org>
Tue, 16 Aug 2016 08:23:14 +0000 (10:23 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 16 Aug 2016 08:33:42 +0000 (10:33 +0200)
- renamed cellphone to mobile (all occurences)
- let's don't discrimite other mobile phones, right?

src/org/mxchange/jcontacts/contact/ContactSessionBeanRemote.java
src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java

index 94b34ba0c8a4804230c64ef401a83dbd98d79652..587f9a3adeec62b85c442c559777a4fdc37a4b93 100644 (file)
@@ -53,7 +53,7 @@ public interface ContactSessionBeanRemote extends Serializable {
         * Updates given contact data
         * <p>
         * @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 {
         * <p>
         * @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.
         * <p>
         * @param contact Contact to update
index 3d0b1a96c42df2dd77abbb79b3ecc8e2f5635448..857246c8cad4cbbf6951d0441b55962603e6572b 100644 (file)
@@ -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.
         * <p>
-        * @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
         * <p>
         * @return Updated contact instance
         * <p>
-        * @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;
 
 }