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 theViewScopedannotation 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 IPluginCustomGUIBeanAfterSaveafterSave()Deprecated.Functionality that is executed immediately after saving the plugin configuration in the uidefault IPluginCustomGUIBeanBeforeDeletebeforeDelete()Deprecated.Functionality that is executed immediately before delete the plugin configuration in the ui.default IPluginCustomGUIBeanBeforeSavebeforeSave()Deprecated.Functionality that is executed immediately before saving the plugin configuration in the uiIProcessingBeangetProcessingBean()Deprecated.Use aManagedPropertywithprocessingBean.voidsetProcessingBean(IProcessingBean bean)Deprecated.Use aManagedPropertywithprocessingBean.- 
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 aManagedPropertywithprocessingBean. 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 aManagedPropertywithprocessingBean. 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 
IProcessingBeanor null 
 
- 
beforeSave
default IPluginCustomGUIBeanBeforeSave beforeSave()
Deprecated.Functionality that is executed immediately before saving the plugin configuration in the ui- Returns:
 - if 
trueis 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. 
 - 
 
 -