Package rocks.xmpp.extensions.muc.model
Interface Item
-
- All Superinterfaces:
Addressable
public interface Item extends Addressable
The<item/>
element, which is used in both#admin
and#user
namespace to manage members and indicate users in a chat room.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Actor
getActor()
Gets the actor for a kick or ban.Affiliation
getAffiliation()
Gets the affiliation.String
getNick()
Gets the nick name.String
getReason()
Gets the reason for a kick or ban.Role
getRole()
Gets the role.-
Methods inherited from interface rocks.xmpp.core.Addressable
getJid
-
-
-
-
Method Detail
-
getNick
String getNick()
Gets the nick name.- Returns:
- The nick name.
-
getRole
Role getRole()
Gets the role.- Returns:
- The role.
-
getAffiliation
Affiliation getAffiliation()
Gets the affiliation.- Returns:
- The affiliation.
-
getReason
String getReason()
Gets the reason for a kick or ban.- Returns:
- The reason.
-
getActor
Actor getActor()
Gets the actor for a kick or ban.- Returns:
- The actor.
-
-