Interface PrivacyListEventListener
-
public interface PrivacyListEventListener/** Interface to listen for privacy list events. Use thePrivacyListManager.addListener(PrivacyListEventListener)method to register for events.- Author:
- Gaston Dombiak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprivacyListCreated(PrivacyList list)A privacy list was created.voidprivacyListDeleting(String listName)A privacy list is being deleted.voidprivacyListModified(PrivacyList list)Properties of the privacy list were changed.
-
-
-
Method Detail
-
privacyListCreated
void privacyListCreated(PrivacyList list)
A privacy list was created.- Parameters:
list- the privacy list.
-
privacyListDeleting
void privacyListDeleting(String listName)
A privacy list is being deleted.- Parameters:
listName- name of the the privacy list that has been deleted.
-
privacyListModified
void privacyListModified(PrivacyList list)
Properties of the privacy list were changed.- Parameters:
list- the privacy list.
-
-