| com.pnfsoftware.jeb.core.properties.IConfiguration |
Known Indirect Subclasses
|
Base interface for objects holding configuration data.
Configuration data consists of a set of key to value mappings.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| abstract void |
clearProperty(String key)
Remove a property from the configuration object.
| ||||||||||
| abstract Set<String> |
getAllPropertyKeys()
Get the collection of all property keys held by this configuration object.
| ||||||||||
| abstract Object |
getProperty(String key)
Retrieve a property value.
| ||||||||||
| abstract void |
setProperty(String key, Object value)
Set a property value.
| ||||||||||
Remove a property from the configuration object.
| key | the property key |
|---|
Get the collection of all property keys held by this configuration object.
Retrieve a property value.
| key | the property key |
|---|
Set a property value.
| key | the property key |
|---|---|
| value | the property value |