From: Roland Häder Date: Tue, 16 Aug 2016 08:05:00 +0000 (+0200) Subject: Renaming season has started: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8227e0b5d86b06ed3020055a281e6d45b669d79a;p=jcontacts-lib.git Renaming season has started: - renamed cellphone to mobile (all occurences) - let's don't discrimite other mobile phones, right? --- diff --git a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java index 6bbde89..3d0b1a9 100644 --- a/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java +++ b/src/org/mxchange/jcontacts/phone/AdminContactsPhoneSessionBeanRemote.java @@ -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 { *

* @return Updated contact instance *

- * @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; }