@Remote
public interface ContactSessionBeanRemote extends Serializable {
- /**
- * Checks if the given contact can be found by checking the whole list.
- * <p>
- * @param contact Contact instance to check
- * <p>
- * @return Whether the found instance or null
- */
- Contact lookupContact (final Contact contact);
-
/**
* Updates given contact data
* <p>
- * @param contact Contact data to update
- * @param isMobileUnlinked Whether a mobile entry has been unlinked in
- * contact instance
+ * @param contact Contact data to update
+ * @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
- * @param isFaxUnlinked Whether a fax entry has been unlinked in contact
- * instance
+ * contact instance
+ * @param isFaxUnlinked Whether a fax entry has been unlinked in
+ * contact instance
* <p>
* @return Updated contact instance
*/
* <p>
* @return A list of call contacts
*/
- List<Contact> allContacts ();
+ List<Contact> fetchAllContacts ();
}