Interface MUCServicePropertyEventListener
-
- All Known Implementing Classes:
MultiUserChatManager
public interface MUCServicePropertyEventListenerInterface to listen for property events. Use theMUCServicePropertyEventDispatcher.addListener(MUCServicePropertyEventListener)method to register for events.- Author:
- Daniel Henninger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpropertyDeleted(String service, String property, Map<String,Object> params)A property was deleted.voidpropertySet(String service, String property, Map<String,Object> params)A property was set.
-
-
-
Method Detail
-
propertySet
void propertySet(String service, String property, Map<String,Object> params)
A property was set. The parameter mapparamswill contain the the value of the property under the keyvalue.- Parameters:
service- the subdomain of the service the property was set on.property- the name of the property.params- event parameters.
-
-