Uses of Class
org.jivesoftware.openfire.roster.Roster
-
Packages that use Roster Package Description org.jivesoftware.openfire.pep Implementation of Personal Eventing via Pubsub (XEP-0163).org.jivesoftware.openfire.privacy Implementation of Blocking Communication.org.jivesoftware.openfire.roster Provides classes for managing the roster.org.jivesoftware.openfire.user Provides the interfaces and classes necessary to create custom user account data providers for Openfire. -
-
Uses of Roster in org.jivesoftware.openfire.pep
Methods in org.jivesoftware.openfire.pep with parameters of type Roster Modifier and Type Method Description boolean
IQPEPHandler. addingContact(Roster roster, RosterItem item, boolean persistent)
void
IQPEPHandler. contactAdded(Roster roster, RosterItem item)
void
IQPEPHandler. contactDeleted(Roster roster, RosterItem item)
void
IQPEPHandler. contactUpdated(Roster roster, RosterItem item)
void
IQPEPHandler. rosterLoaded(Roster roster)
-
Uses of Roster in org.jivesoftware.openfire.privacy
Methods in org.jivesoftware.openfire.privacy with parameters of type Roster Modifier and Type Method Description boolean
PrivacyItem. matchesCondition(org.xmpp.packet.Packet packet, Roster roster, org.xmpp.packet.JID userJID)
Returns true if the packet to analyze matches the condition defined by this rule. -
Uses of Roster in org.jivesoftware.openfire.roster
Methods in org.jivesoftware.openfire.roster that return Roster Modifier and Type Method Description Roster
RosterManager. getRoster(String username)
Returns the roster for the given username.Methods in org.jivesoftware.openfire.roster with parameters of type Roster Modifier and Type Method Description static boolean
RosterEventDispatcher. addingContact(Roster roster, RosterItem item, boolean persistent)
Notifies listeners that a contact is about to be added to a roster.boolean
RosterEventListener. addingContact(Roster roster, RosterItem item, boolean persistent)
Notification message indicating that a contact is about to be added to a roster.static void
RosterEventDispatcher. contactAdded(Roster roster, RosterItem item)
Notifies the listeners that a contact has been added to a roster.void
RosterEventListener. contactAdded(Roster roster, RosterItem item)
Notification message indicating that a contact has been added to a roster.static void
RosterEventDispatcher. contactDeleted(Roster roster, RosterItem item)
Notifies the listeners that a contact has been deleted from a roster.void
RosterEventListener. contactDeleted(Roster roster, RosterItem item)
Notification message indicating that a contact has been deleted from a roster.static void
RosterEventDispatcher. contactUpdated(Roster roster, RosterItem item)
Notifies the listeners that a contact has been updated.void
RosterEventListener. contactUpdated(Roster roster, RosterItem item)
Notification message indicating that a contact has been updated.static void
RosterEventDispatcher. rosterLoaded(Roster roster)
Notifies the listeners that a roster has just been loaded.void
RosterEventListener. rosterLoaded(Roster roster)
Notification message indicating that a roster has just been loaded. -
Uses of Roster in org.jivesoftware.openfire.user
Methods in org.jivesoftware.openfire.user that return Roster Modifier and Type Method Description Roster
User. getRoster()
Returns the user's roster.
-