Uses of Class
rocks.xmpp.extensions.muc.model.Affiliation
-
Packages that use Affiliation Package Description rocks.xmpp.extensions.muc Provides classes for XEP-0045: Multi-User Chat.rocks.xmpp.extensions.muc.model Provides XML schema implementations and configuration 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 Affiliation in rocks.xmpp.extensions.muc
Methods in rocks.xmpp.extensions.muc that return Affiliation Modifier and Type Method Description Affiliation
Occupant. getAffiliation()
Gets the affiliation of the occupant.Methods in rocks.xmpp.extensions.muc with parameters of type Affiliation Modifier and Type Method Description AsyncResult<IQ>
ChatRoom. changeAffiliation(Affiliation affiliation, Jid user, String reason)
Changes the affiliation for an user. -
Uses of Affiliation in rocks.xmpp.extensions.muc.model
Methods in rocks.xmpp.extensions.muc.model that return Affiliation Modifier and Type Method Description Affiliation
Item. getAffiliation()
Gets the affiliation.static Affiliation
Affiliation. valueOf(String name)
Returns the enum constant of this type with the specified name.static Affiliation[]
Affiliation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in rocks.xmpp.extensions.muc.model with parameters of type Affiliation Modifier and Type Method Description boolean
Affiliation. isHigherThan(Affiliation affiliation)
Compares two affiliations and returns true, if this affiliation is higher than the other with regards to their privileges in a multi-user chat. -
Uses of Affiliation in rocks.xmpp.extensions.muc.model.admin
Methods in rocks.xmpp.extensions.muc.model.admin with parameters of type Affiliation 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 MucAdmin
MucAdmin. withItem(Affiliation affiliation)
Creates a<query/>
element with an<item/>
child element.static MucAdmin
MucAdmin. withItem(Affiliation affiliation, Jid jid, String reason)
Creates a<query/>
element with an<item/>
child element.static MucAdmin
MucAdmin. withItem(Affiliation affiliation, Jid jid, String nick, String reason)
Creates a<query/>
element with an<item/>
child element. -
Uses of Affiliation in rocks.xmpp.extensions.muc.model.user
Methods in rocks.xmpp.extensions.muc.model.user with parameters of type Affiliation Modifier and Type Method Description static MucUser
MucUser. withDestroy(Affiliation affiliation, Role role, Jid jid, String reason)
Creates a<x/>
element with an<item/>
and a<destroy/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, String nick, String reason)
Creates a<x/>
element with an<item/>
and a<status/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Jid jid, String nick, Actor actor, String reason, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Jid jid, String nick, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Jid jid, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Actor actor, String reason, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.static MucUser
MucUser. withItem(Affiliation affiliation, Role role, Status... status)
Creates a<x/>
element with an<item/>
and a<status/>
child element.
-