Interface IPluginConfigParamList
- All Superinterfaces:
IFCPlugin, INamedUiElement, INameProviding, ITransferable, Serializable
Deprecated.
Use the new workflow engine, which lets you specify a custom model and a custom UI.
Interface for workflow action plugins. By implementing this interface, you can prefill the list of available
parameters shown on the configuration page of the workflow action.
- Author:
- XIMA MEDIA GmbH
-
Field Summary
Fields inherited from interface IFCPlugin
CONFIG_FILENAMEFields inherited from interface INamedUiElement
ATTR_DISPLAY_NAMEFields inherited from interface INameProviding
ATTR_NAME, COL_NAME -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.This method should return a map of parameters required by the workflow action plugin.Methods inherited from interface IFCPlugin
getDescription, getDescription, getDisplayName, getName, initialize, initPlugin, install, shutdown, shutdown, uninstall, validateConfigurationData
-
Method Details
-
getConfigParameter
Map<String, IPluginConfigParam> getConfigParameter()Deprecated.This method should return a map of parameters required by the workflow action plugin. The key is the name of the parameter, the value must be an instance ofIPluginConfigParamwith some details about the parameters, such as its default value and whether it is required.- Returns:
- A map between the key of the property and the metadata of that property.
-