Package com.avaya.clientservices.contact
Interface ContactGroupListener
-
public interface ContactGroupListenerInterface that can be used to retrieve status updates for a Contact.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonContactsAdded(ContactGroup contactGroup, java.util.Collection<Contact> contacts)Occurs when new contacts were added to the group, either through local or remote actions.voidonContactsRemoved(ContactGroup contactGroup, java.util.Collection<Contact> contacts)Occurs when contacts were removed from the group, either through local or remote actions.
-
-
-
Method Detail
-
onContactsAdded
void onContactsAdded(ContactGroup contactGroup, java.util.Collection<Contact> contacts)
Occurs when new contacts were added to the group, either through local or remote actions.- Parameters:
contactGroup- The contact group that was updated.contacts- The contacts that were added.
-
onContactsRemoved
void onContactsRemoved(ContactGroup contactGroup, java.util.Collection<Contact> contacts)
Occurs when contacts were removed from the group, either through local or remote actions.- Parameters:
contactGroup- The contact group that was updated.contacts- The contacts that were removed.
-
-