Interface ProcessEnginePluginXml
-
- All Known Implementing Classes:
ProcessEnginePluginXmlImpl
public interface ProcessEnginePluginXml
Java API representation of a
ProcessEnginePlugin
configuration inside a deployment descriptor.- Author:
- Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPluginClass()
returns the fully qualified classname of the pluginjava.util.Map<java.lang.String,java.lang.String>
getProperties()
-
-
-
Method Detail
-
getPluginClass
java.lang.String getPluginClass()
returns the fully qualified classname of the plugin
-
getProperties
java.util.Map<java.lang.String,java.lang.String> getProperties()
- Returns:
- a set of additional properties. The properties are directly set on
the
ProcessEnginePlugin
class (seegetPluginClass()
). 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
.
-
-