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.IFCPluginCONFIG_FILENAME
 - 
Fields inherited from interface de.xima.fc.interfaces.INamedUiElementATTR_DISPLAY_NAME
 - 
Fields inherited from interface de.xima.fc.entities.interfaces.INameProvidingATTR_NAME, COL_NAME
 
- 
 - 
Method SummaryAll 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.IFCPlugingetDescription, getDescription, getDisplayName, getName, initialize, initPlugin, install, shutdown, shutdown, uninstall, validateConfigurationData
 
- 
 
- 
- 
- 
Method Detail- 
getConfigParameterMap<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 meta data of that property.
 
 
- 
 
-