public abstract class AbstractRosterListener extends java.lang.Object implements RosterListener
RosterListener.| Constructor and Description |
|---|
AbstractRosterListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
entriesAdded(java.util.Collection<org.jxmpp.jid.Jid> addresses)
Called when roster entries are added.
|
void |
entriesDeleted(java.util.Collection<org.jxmpp.jid.Jid> addresses)
Called when a roster entries are removed.
|
void |
entriesUpdated(java.util.Collection<org.jxmpp.jid.Jid> addresses)
Called when a roster entries are updated.
|
void |
presenceChanged(org.jivesoftware.smack.packet.Presence presence)
Called when the presence of a roster entry is changed.
|
public void entriesAdded(java.util.Collection<org.jxmpp.jid.Jid> addresses)
RosterListenerentriesAdded in interface RosterListeneraddresses - the XMPP addresses of the contacts that have been added to the roster.public void entriesUpdated(java.util.Collection<org.jxmpp.jid.Jid> addresses)
RosterListenerentriesUpdated in interface RosterListeneraddresses - the XMPP addresses of the contacts whose entries have been updated.public void entriesDeleted(java.util.Collection<org.jxmpp.jid.Jid> addresses)
RosterListenerentriesDeleted in interface RosterListeneraddresses - the XMPP addresses of the contacts that have been removed from the roster.public void presenceChanged(org.jivesoftware.smack.packet.Presence presence)
RosterListenerTo get the current "best presence" for a user after the presence update, query the roster:
String user = presence.getFrom();
Presence bestPresence = roster.getPresence(user);
That will return the presence value for the user with the highest priority and
availability.
Note that this listener is triggered for presence (mode) changes only
(e.g presence of types available and unavailable. Subscription-related
presence packets will not cause this method to be called.presenceChanged in interface RosterListenerpresence - the presence that changed.Roster.getPresence(org.jxmpp.jid.BareJid)