Package de.xima.fc.plugin.gui
Interface IPluginCustomGUIBean
-
- All Superinterfaces:
IPluginGenericCustomGUIBean
,Serializable
- All Known Implementing Classes:
APluginCustomGUIBean
@Deprecated public interface IPluginCustomGUIBean extends IPluginGenericCustomGUIBean
Deprecated.Use the new workflow engine, e.g.IPluginWorkflowNode
.Interface for deploying the formcycle processing bean within a custom plugin bean This bean must be view scoped, ie. have theViewScoped
annotation set. The bean is created when the plugin action is selected, and destroyed when a different action is selected.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default IPluginCustomGUIBeanAfterSave
afterSave()
Deprecated.Functionality that is executed immediately after saving the plugin configuration in the uidefault IPluginCustomGUIBeanBeforeDelete
beforeDelete()
Deprecated.Functionality that is executed immediately before delete the plugin configuration in the ui.default IPluginCustomGUIBeanBeforeSave
beforeSave()
Deprecated.Functionality that is executed immediately before saving the plugin configuration in the uiIProcessingBean
getProcessingBean()
Deprecated.Use aManagedProperty
withprocessingBean
.void
setProcessingBean(IProcessingBean bean)
Deprecated.Use aManagedProperty
withprocessingBean
.-
Methods inherited from interface de.xima.fc.plugin.gui.IPluginGenericCustomGUIBean
destroy, getFileHelper, getProperties, getResourceHelper, initialize
-
-
-
-
Method Detail
-
setProcessingBean
@Deprecated void setProcessingBean(IProcessingBean bean)
Deprecated.Use aManagedProperty
withprocessingBean
. Otherwise, the processing bean will not be available whenIPluginGenericCustomGUIBean.initialize(de.xima.fc.interfaces.plugin.lifecycle.IPluginInitializeBeanData)
is called.Sets a reference to the formcycle processing bean- Parameters:
bean
- an object of typeIProcessingBean
-
getProcessingBean
@Deprecated IProcessingBean getProcessingBean()
Deprecated.Use aManagedProperty
withprocessingBean
. Otherwise, the processing bean will not be available whenIPluginGenericCustomGUIBean.initialize(de.xima.fc.interfaces.plugin.lifecycle.IPluginInitializeBeanData)
is called.Provides access to the formcycle processing bean.- Returns:
- an object of type
IProcessingBean
or null
-
beforeSave
default IPluginCustomGUIBeanBeforeSave beforeSave()
Deprecated.Functionality that is executed immediately before saving the plugin configuration in the ui- Returns:
- if
true
is returned, plugin will be saved, else not
-
afterSave
default IPluginCustomGUIBeanAfterSave afterSave()
Deprecated.Functionality that is executed immediately after saving the plugin configuration in the ui
-
beforeDelete
default IPluginCustomGUIBeanBeforeDelete beforeDelete()
Deprecated.Functionality that is executed immediately before delete the plugin configuration in the ui. Can be used for clean up functionality before deletion the action plugin from workflow-processing.
-
-