public class DefaultUserStatusListener extends Object implements UserStatusListener
This class does not provide any behavior by default. It just avoids having to implement all the inteface methods if the user is only interested in implementing some of the methods.
| Constructor and Description |
|---|
DefaultUserStatusListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
adminGranted()
Called when an owner grants administrator privileges to your user.
|
void |
adminRevoked()
Called when an owner revokes administrator privileges from your user.
|
void |
banned(String actor,
String reason)
Called when an administrator or owner banned your user from the room.
|
void |
kicked(String actor,
String reason)
Called when a moderator kicked your user from the room.
|
void |
membershipGranted()
Called when an administrator grants your user membership to the room.
|
void |
membershipRevoked()
Called when an administrator revokes your user membership to the room.
|
void |
moderatorGranted()
Called when an administrator grants moderator privileges to your user.
|
void |
moderatorRevoked()
Called when an administrator revokes moderator privileges from your user.
|
void |
ownershipGranted()
Called when an owner grants to your user ownership on the room.
|
void |
ownershipRevoked()
Called when an owner revokes from your user ownership on the room.
|
void |
voiceGranted()
Called when a moderator grants voice to your user.
|
void |
voiceRevoked()
Called when a moderator revokes voice from your user.
|
public DefaultUserStatusListener()
public void kicked(String actor, String reason)
UserStatusListenerkicked in interface UserStatusListeneractor - the moderator that kicked your user from the room (e.g. user@host.org).reason - the reason provided by the actor to kick you from the room.public void voiceGranted()
UserStatusListenervoiceGranted in interface UserStatusListenerpublic void voiceRevoked()
UserStatusListenervoiceRevoked in interface UserStatusListenerpublic void banned(String actor, String reason)
UserStatusListenerbanned in interface UserStatusListeneractor - the administrator that banned your user (e.g. user@host.org).reason - the reason provided by the administrator to banned you.public void membershipGranted()
UserStatusListenermembershipGranted in interface UserStatusListenerpublic void membershipRevoked()
UserStatusListenermembershipRevoked in interface UserStatusListenerpublic void moderatorGranted()
UserStatusListenermoderatorGranted in interface UserStatusListenerpublic void moderatorRevoked()
UserStatusListenermoderatorRevoked in interface UserStatusListenerpublic void ownershipGranted()
UserStatusListenerownershipGranted in interface UserStatusListenerpublic void ownershipRevoked()
UserStatusListenerownershipRevoked in interface UserStatusListenerpublic void adminGranted()
UserStatusListeneradminGranted in interface UserStatusListenerpublic void adminRevoked()
UserStatusListeneradminRevoked in interface UserStatusListener