Interface PluginPropertyManager
- All Known Implementing Classes:
PluginPropertyManagerGeneric
public interface PluginPropertyManager
Manages plugin properties.
All properties are inserted with a "plugin." prefix.
-
Method Summary
Modifier and TypeMethodDescriptiongetProperty
(String key, String name) void
removeProperty
(String key, String name) void
setProperties
(String key, Map<String, String> properties) Replaces all properties which have the givenkey
with a new collection.void
setProperty
(String key, String name, String value)
-
Method Details
-
getProperty
- Throws:
ObjectNotFoundException
-
setProperty
-
setProperties
Replaces all properties which have the givenkey
with a new collection. What this means for properties having the givenkey
:- All properties which are not present in the
properties
map will be removed. - New properties from the
properties
map will be added. - Existing properties which are also present in the
properties
map will be updated.
- Parameters:
key
- properties keyproperties
- mapping of names to values of properties
- All properties which are not present in the
-
removeProperty
-
findAll
-