Uses of Class
org.jivesoftware.openfire.privacy.PrivacyList
-
Packages that use PrivacyList Package Description org.jivesoftware.openfire.privacy Implementation of Blocking Communication.org.jivesoftware.openfire.session -
-
Uses of PrivacyList in org.jivesoftware.openfire.privacy
Methods in org.jivesoftware.openfire.privacy that return PrivacyList Modifier and Type Method Description PrivacyList
PrivacyListManager. createPrivacyList(String username, String listName, org.dom4j.Element listElement)
Creates a new privacy list for the specified user.PrivacyList
PrivacyListManager. getDefaultPrivacyList(String username)
Returns the default privacy list of the specified user ornull
if none was found.PrivacyList
PrivacyListManager. getPrivacyList(String username, String listName)
Returns a specific privacy list of the specified user ornull
if none was found.PrivacyList
PrivacyListProvider. loadDefaultPrivacyList(String username)
Loads the default privacy list of a given user from the database.PrivacyList
PrivacyListProvider. loadPrivacyList(String username, String listName)
Loads the requested privacy list from the database.Methods in org.jivesoftware.openfire.privacy with parameters of type PrivacyList Modifier and Type Method Description void
PrivacyListManager. changeDefaultList(String username, PrivacyList newDefault, PrivacyList oldDefault)
Sets a given privacy list as the new default list of the user.void
PrivacyListProvider. createPrivacyList(String username, PrivacyList list)
Creates and saves the new privacy list to the database.void
PrivacyListEventListener. privacyListCreated(PrivacyList list)
A privacy list was created.void
PrivacyListEventListener. privacyListModified(PrivacyList list)
Properties of the privacy list were changed.void
PrivacyListProvider. updatePrivacyList(String username, PrivacyList list)
Updated the existing privacy list in the database. -
Uses of PrivacyList in org.jivesoftware.openfire.session
Methods in org.jivesoftware.openfire.session that return PrivacyList Modifier and Type Method Description PrivacyList
ClientSession. getActiveList()
Returns the Privacy list that overrides the default privacy list.PrivacyList
LocalClientSession. getActiveList()
Returns the Privacy list that overrides the default privacy list.PrivacyList
RemoteClientSession. getActiveList()
PrivacyList
ClientSession. getDefaultList()
Returns the default Privacy list used for the session's user.PrivacyList
LocalClientSession. getDefaultList()
Returns the default Privacy list used for the session's user.PrivacyList
RemoteClientSession. getDefaultList()
Methods in org.jivesoftware.openfire.session with parameters of type PrivacyList Modifier and Type Method Description void
ClientSession. setActiveList(PrivacyList activeList)
Sets the Privacy list that overrides the default privacy list.void
LocalClientSession. setActiveList(PrivacyList activeList)
Sets the Privacy list that overrides the default privacy list.void
RemoteClientSession. setActiveList(PrivacyList activeList)
void
ClientSession. setDefaultList(PrivacyList defaultList)
Sets the default Privacy list used for the session's user.void
LocalClientSession. setDefaultList(PrivacyList defaultList)
Sets the default Privacy list used for the session's user.void
RemoteClientSession. setDefaultList(PrivacyList defaultList)
-