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

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

index 6bbde893aadd6ad3f661dbe646601f8f7be634e7..3d0b1a96c42df2dd77abbb79b3ecc8e2f5635448 100644 (file)
@@ -19,8 +19,8 @@ package org.mxchange.jcontacts.phone;
 import java.io.Serializable;
 import javax.ejb.Remote;
 import org.mxchange.jcontacts.contact.Contact;
-import org.mxchange.jphone.exceptions.CellphoneNotLinkedException;
-import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber;
+import org.mxchange.jphone.exceptions.MobileNumberNotLinkedException;
+import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
 
 /**
  * A remote interface for administrative purposes around contact's phone numbers
@@ -40,9 +40,9 @@ public interface AdminContactsPhoneSessionBeanRemote extends Serializable {
         * <p>
         * @return Updated contact instance
         * <p>
-        * @throws CellphoneNotLinkedException If a cell phone instance is not
+        * @throws MobileNumberNotLinkedException If a cell phone instance is not
         * linked (null) with this contact
         */
-       Contact unlinkCellphoneDataFromContact (final Contact contact, final DialableCellphoneNumber cellphoneNumber) throws CellphoneNotLinkedException;
+       Contact unlinkCellphoneDataFromContact (final Contact contact, final DialableMobileNumber cellphoneNumber) throws MobileNumberNotLinkedException;
 
 }