Uses of Interface
rocks.xmpp.extensions.muc.model.Item
-
Packages that use Item Package Description rocks.xmpp.extensions.muc Provides classes for XEP-0045: Multi-User Chat.rocks.xmpp.extensions.muc.model.admin Provides XML schema implementations of XEP-0045: Multi-User Chat (#admin).rocks.xmpp.extensions.muc.model.user Provides XML schema implementations of XEP-0045: Multi-User Chat (#user). -
-
Uses of Item in rocks.xmpp.extensions.muc
Methods in rocks.xmpp.extensions.muc that return types with arguments of type Item Modifier and Type Method Description AsyncResult<List<Item>>
ChatRoom. getAdmins()
Gets the admins of the room.AsyncResult<List<Item>>
ChatRoom. getBanList()
Gets the ban list.AsyncResult<List<Item>>
ChatRoom. getMembers()
Gets the members of the room.AsyncResult<List<Item>>
ChatRoom. getModerators()
Gets the moderators.AsyncResult<List<Item>>
ChatRoom. getOutcasts()
Gets the outcasts of the room.AsyncResult<List<Item>>
ChatRoom. getOwners()
Gets the owners of the room.AsyncResult<List<Item>>
ChatRoom. getVoiceList()
Gets the voice list.Method parameters in rocks.xmpp.extensions.muc with type arguments of type Item Modifier and Type Method Description AsyncResult<IQ>
ChatRoom. changeAffiliationsOrRoles(List<Item> items)
Changes multiple affiliations or roles. -
Uses of Item in rocks.xmpp.extensions.muc.model.admin
Methods in rocks.xmpp.extensions.muc.model.admin that return Item Modifier and Type Method Description static Item
MucAdmin. createItem(Affiliation affiliation)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Affiliation affiliation, Jid jid)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Affiliation affiliation, Jid jid, String reason)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Affiliation affiliation, Jid jid, String nick, String reason)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Affiliation affiliation, Role role, Jid jid, String nick, Actor actor, String reason)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Role role)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Role role, String nick)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.static Item
MucAdmin. createItem(Role role, String nick, String reason)
Creates an item, which can be used as input parameter forMucAdmin.withItems(Item...)
.Methods in rocks.xmpp.extensions.muc.model.admin that return types with arguments of type Item Modifier and Type Method Description List<Item>
MucAdmin. getItems()
Gets the items.Methods in rocks.xmpp.extensions.muc.model.admin with parameters of type Item Modifier and Type Method Description static MucAdmin
MucAdmin. withItems(Item... items)
Creates a<query/>
element with<item/>
child elements.Method parameters in rocks.xmpp.extensions.muc.model.admin with type arguments of type Item Modifier and Type Method Description static MucAdmin
MucAdmin. withItems(List<Item> items)
Creates a<query/>
element with<item/>
child elements. -
Uses of Item in rocks.xmpp.extensions.muc.model.user
Methods in rocks.xmpp.extensions.muc.model.user that return Item Modifier and Type Method Description Item
MucUser. getItem()
Gets the item.
-