Package de.xima.fc.plugin.config
Interface IPluginConfigParamList
-
- All Superinterfaces:
IFCPlugin
,INamedUiElement
,INameProviding
,ITransferable
,Serializable
@Deprecated public interface IPluginConfigParamList extends IFCPlugin
Deprecated.Use the new workflow engine, which lets you specify a custom model and a custom UI.Interface for workflow action plugins (IPluginProcessing
). 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 de.xima.fc.plugin.interfaces.IFCPlugin
CONFIG_FILENAME
-
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Map<String,IPluginConfigParam>
getConfigParameter()
Deprecated.This method should return a map of parameters required by the workflow action plugin.-
Methods inherited from interface de.xima.fc.plugin.interfaces.IFCPlugin
getDescription, getDescription, getDisplayName, getName, initialize, initPlugin, install, shutdown, shutdown, uninstall, validateConfigurationData
-
-
-
-
Method Detail
-
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 ofIPluginConfigParam
with 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 meta data of that property.
-
-