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