Package org.apache.unomi.api.services
Interface ConfigSharingService
-
- All Known Implementing Classes:
ConfigSharingServiceImpl
public interface ConfigSharingServiceA service to share configuration properties with other bundles. It also support listeners that will be called whenever a property is added/updated/removed. Simply register a service with the @link ConfigSharingServiceConfigChangeListener interface and it will be automatically picked up.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classConfigSharingService.ConfigChangeEventstatic interfaceConfigSharingService.ConfigChangeListener
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetProperty(String name)Set<String>getPropertyNames()booleanhasProperty(String name)ObjectremoveProperty(String name)ObjectsetProperty(String name, Object value)
-