Interface MUCServicePropertyEventListener
-
- All Known Implementing Classes:
MultiUserChatManager
public interface MUCServicePropertyEventListener
Interface 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 void
propertyDeleted(String service, String property, Map<String,Object> params)
A property was deleted.void
propertySet(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 mapparams
will 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.
-
-