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) voidremoveProperty(String key, String name) voidsetProperties(String key, Map<String, String> properties) Replaces all properties which have the givenkeywith a new collection.voidsetProperty(String key, String name, String value)
-
Method Details
-
getProperty
String getProperty(String key, String name) throws com.atlassian.crowd.exception.ObjectNotFoundException - Throws:
com.atlassian.crowd.exception.ObjectNotFoundException
-
setProperty
-
setProperties
Replaces all properties which have the givenkeywith a new collection. What this means for properties having the givenkey:- All properties which are not present in the
propertiesmap will be removed. - New properties from the
propertiesmap will be added. - Existing properties which are also present in the
propertiesmap will be updated.
- Parameters:
key- properties keyproperties- mapping of names to values of properties
- All properties which are not present in the
-
removeProperty
-
findAll
-