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
ProcessEnginePluginXml
descriptor- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected String
pluginClass
protected Map<String,String>
properties
-
Constructor Summary
Constructors Constructor Description ProcessEnginePluginXmlImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPluginClass()
returns the fully qualified classname of the pluginMap<String,String>
getProperties()
void
setPluginClass(String pluginClass)
void
setProperties(Map<String,String> properties)
-
-
-
Method Detail
-
getPluginClass
public String getPluginClass()
Description copied from interface:ProcessEnginePluginXml
returns the fully qualified classname of the plugin- Specified by:
getPluginClass
in interfaceProcessEnginePluginXml
-
setPluginClass
public void setPluginClass(String pluginClass)
-
getProperties
public Map<String,String> getProperties()
- Specified by:
getProperties
in interfaceProcessEnginePluginXml
- Returns:
- a set of additional properties. The properties are directly set on
the
ProcessEnginePlugin
class (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
,Integer
orBoolean
.
-
-