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