Uses of Class
rocks.xmpp.extensions.privacy.model.PrivacyList
-
Packages that use PrivacyList Package Description rocks.xmpp.extensions.privacy Provides classes for XEP-0016: Privacy Lists.rocks.xmpp.extensions.privacy.model Provides XML schema implementations of XEP-0016: Privacy Lists. -
-
Uses of PrivacyList in rocks.xmpp.extensions.privacy
Methods in rocks.xmpp.extensions.privacy that return types with arguments of type PrivacyList Modifier and Type Method Description AsyncResult<PrivacyList>
PrivacyListManager. getPrivacyList(String name)
Gets a privacy list.AsyncResult<Collection<PrivacyList>>
PrivacyListManager. getPrivacyLists()
Gets the privacy lists.Methods in rocks.xmpp.extensions.privacy with parameters of type PrivacyList Modifier and Type Method Description AsyncResult<IQ>
PrivacyListManager. createOrUpdateList(PrivacyList privacyList)
Creates or edits a privacy list. -
Uses of PrivacyList in rocks.xmpp.extensions.privacy.model
Methods in rocks.xmpp.extensions.privacy.model that return PrivacyList Modifier and Type Method Description PrivacyList
PrivacyList. asActive()
Gets the privacy list marked as active list.PrivacyList
PrivacyList. asDefault()
Gets the privacy list marked as default list.static PrivacyList
PrivacyList. createInvisibilityList()
Creates a global invisibility list.static PrivacyList
PrivacyList. createInvisibilityListExceptForGroups(String listName, String... groups)
Creates a global invisibility list, where you are still visible to some contacts.static PrivacyList
PrivacyList. createInvisibilityListExceptForUsers(String listName, Jid... jids)
Creates a global invisibility list, where you are still visible to some contacts.static PrivacyList
PrivacyList. createInvisibilityListForGroups(String listName, String... groups)
Creates a selective invisibility list.static PrivacyList
PrivacyList. createInvisibilityListForUsers(String listName, Jid... jids)
Creates a selective invisibility list.Methods in rocks.xmpp.extensions.privacy.model that return types with arguments of type PrivacyList Modifier and Type Method Description List<PrivacyList>
Privacy. getPrivacyLists()
Gets the privacy lists.Methods in rocks.xmpp.extensions.privacy.model with parameters of type PrivacyList Modifier and Type Method Description int
PrivacyList. compareTo(PrivacyList o)
Compares this privacy list with another list.Constructors in rocks.xmpp.extensions.privacy.model with parameters of type PrivacyList Constructor Description Privacy(PrivacyList... privacyLists)
Creates a privacy element with one or more privacy lists.Constructor parameters in rocks.xmpp.extensions.privacy.model with type arguments of type PrivacyList Constructor Description Privacy(String activeName, String defaultName, Collection<PrivacyList> privacyLists)
Creates a privacy element with one or more privacy lists and an active and default name.
-