Package org.jivesoftware.openfire.roster
Interface RosterEventListener
- All Known Implementing Classes:
IQPEPHandler
public interface RosterEventListener
Interface to listen for roster events. Use the
RosterEventDispatcher.addListener(RosterEventListener)
method to register for events.- Author:
- Gaston Dombiak
-
Method Summary
Modifier and TypeMethodDescriptionbooleanaddingContact(Roster roster, RosterItem item, boolean persistent) Notification message indicating that a contact is about to be added to a roster.voidcontactAdded(Roster roster, RosterItem item) Notification message indicating that a contact has been added to a roster.voidcontactDeleted(Roster roster, RosterItem item) Notification message indicating that a contact has been deleted from a roster.voidcontactUpdated(Roster roster, RosterItem item) Notification message indicating that a contact has been updated.voidrosterLoaded(Roster roster) Notification message indicating that a roster has just been loaded.
-
Method Details
-
rosterLoaded
Notification message indicating that a roster has just been loaded.- Parameters:
roster- the loaded roster.
-
addingContact
Notification message indicating that a contact is about to be added to a roster. New contacts may be persisted to the database or not. Listeners may indicate that contact about to be persisted should not be persisted. Only one listener is needed to returnfalseso that the contact is not persisted.- Parameters:
roster- the roster that was updated.item- the new roster item.persistent- true if the new contact is going to be saved to the database.- Returns:
- false if the contact should not be persisted to the database.
-
contactAdded
Notification message indicating that a contact has been added to a roster.- Parameters:
roster- the roster that was updated.item- the new roster item.
-
contactUpdated
Notification message indicating that a contact has been updated.- Parameters:
roster- the roster that was updated.item- the updated roster item.
-
contactDeleted
Notification message indicating that a contact has been deleted from a roster.- Parameters:
roster- the roster that was updated.item- the roster item that was deleted.
-