public interface ComponentConfigStore extends Store<ComponentConfigEvent,ComponentConfigStoreDelegate>
| Modifier and Type | Method and Description |
|---|---|
default Set<String> |
getProperties(String component)
Returns set of component configuration property names.
|
default String |
getProperty(String component,
String name)
Returns the string value of the given component configuration property.
|
void |
setProperty(String componentName,
String name,
String value)
Sets the value of the specified configuration property.
|
void |
unsetProperty(String componentName,
String name)
Clears the value of the specified configuration property thus making
the property take on its default value.
|
hasDelegate, setDelegate, unsetDelegatevoid setProperty(String componentName, String name, String value)
componentName - component namename - property namevalue - new property valuevoid unsetProperty(String componentName, String name)
componentName - component namename - property namedefault Set<String> getProperties(String component)
component - component namedefault String getProperty(String component, String name)
component - component namename - property name; null if no property found or if value
is default