Class ProcessEnginePluginXmlImpl
- java.lang.Object
-
- org.camunda.bpm.container.impl.metadata.ProcessEnginePluginXmlImpl
-
- All Implemented Interfaces:
ProcessEnginePluginXml
public class ProcessEnginePluginXmlImpl extends Object implements ProcessEnginePluginXml
Implementation of the
ProcessEnginePluginXmldescriptor- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected StringpluginClassprotected Map<String,String>properties
-
Constructor Summary
Constructors Constructor Description ProcessEnginePluginXmlImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPluginClass()returns the fully qualified classname of the pluginMap<String,String>getProperties()voidsetPluginClass(String pluginClass)voidsetProperties(Map<String,String> properties)
-
-
-
Method Detail
-
getPluginClass
public String getPluginClass()
Description copied from interface:ProcessEnginePluginXmlreturns the fully qualified classname of the plugin- Specified by:
getPluginClassin interfaceProcessEnginePluginXml
-
setPluginClass
public void setPluginClass(String pluginClass)
-
getProperties
public Map<String,String> getProperties()
- Specified by:
getPropertiesin interfaceProcessEnginePluginXml- Returns:
- a set of additional properties. The properties are directly set on
the
ProcessEnginePluginclass (seeProcessEnginePluginXml.getPluginClass()). This means that each property name used here must be a bean property name on the plugin class and the bean property must be of typeString,IntegerorBoolean.
-
-