Uses of Interface
de.xima.fc.plugin.config.IPluginGenericCustomGUI
-
-
Uses of IPluginGenericCustomGUI in de.xima.fc.gui.bean.plugingui
Classes in de.xima.fc.gui.bean.plugingui with type parameters of type IPluginGenericCustomGUI Modifier and Type Class Description class
PluginBeanHelper<TBean extends IPluginGenericCustomGUIBean,TPlugin extends IFCPlugin & IPluginGenericCustomGUI<TBean>>
Helper class for handling unmanaged beans used by user interfaces provided by a plugin, eg.Methods in de.xima.fc.gui.bean.plugingui with type parameters of type IPluginGenericCustomGUI Modifier and Type Method Description static <TBean extends IPluginGenericCustomGUIBean,TPlugin extends IFCPlugin & IPluginGenericCustomGUI<TBean>>
PluginBeanHelper<TBean,TPlugin>PluginBeanHelper. forCurrentApplicationScope(TPlugin plugin, Mandant client, PluginBeanOptions pluginBeanOptions)
A new helper for application scoped beans of the given plugin.static <TBean extends IPluginGenericCustomGUIBean,TPlugin extends IFCPlugin & IPluginGenericCustomGUI<TBean>>
PluginBeanHelper<TBean,TPlugin>PluginBeanHelper. forCurrentRequestScope(TPlugin plugin, Mandant client, PluginBeanOptions pluginBeanOptions)
A new helper for application request beans of the given plugin.static <TBean extends IPluginGenericCustomGUIBean,TPlugin extends IFCPlugin & IPluginGenericCustomGUI<TBean>>
PluginBeanHelper<TBean,TPlugin>PluginBeanHelper. forCurrentSessionScope(TPlugin plugin, Mandant client, PluginBeanOptions pluginBeanOptions)
A new helper for session scoped beans of the given plugin.static <TBean extends IPluginGenericCustomGUIBean,TPlugin extends IFCPlugin & IPluginGenericCustomGUI<TBean>>
PluginBeanHelper<TBean,TPlugin>PluginBeanHelper. forCurrentViewScope(TPlugin plugin, Mandant client, PluginBeanOptions pluginBeanOptions)
A new helper for view scoped beans of the given plugin. -
Uses of IPluginGenericCustomGUI in de.xima.fc.plugin.config
Subinterfaces of IPluginGenericCustomGUI in de.xima.fc.plugin.config Modifier and Type Interface Description interface
IPluginCustomGUI
Deprecated.Use the new workflow engine, e.g. -
Uses of IPluginGenericCustomGUI in de.xima.fc.plugin.interfaces.auth
Subinterfaces of IPluginGenericCustomGUI in de.xima.fc.plugin.interfaces.auth Modifier and Type Interface Description interface
IPluginAuthenticatorType
Interface for custom authenticator types. -
Uses of IPluginGenericCustomGUI in de.xima.fc.plugin.interfaces.backend
Subinterfaces of IPluginGenericCustomGUI in de.xima.fc.plugin.interfaces.backend Modifier and Type Interface Description interface
IPluginClientDashboard
Interface for client dashboard plugins.interface
IPluginProjectMenu
Plugin interface for providing custom menus for projects with a specified scope -
Uses of IPluginGenericCustomGUI in de.xima.fc.plugin.interfaces.workflow
Subinterfaces of IPluginGenericCustomGUI in de.xima.fc.plugin.interfaces.workflow Modifier and Type Interface Description interface
IPluginWorkflowNode
Interface for workflow node plugins.interface
IPluginWorkflowTrigger
Interface for workflow trigger plugins. -
Uses of IPluginGenericCustomGUI in de.xima.fc.workflow.mixin
Subinterfaces of IPluginGenericCustomGUI in de.xima.fc.workflow.mixin Modifier and Type Interface Description interface
IPluginActionNodeHandler<TData extends BaseActionProps>
Mixin meant forIPluginWorkflowNode
plugins that only wish to provide a workflow action that executes some business logic.interface
IPluginConditionNodeHandler<TData extends BaseConditionProps>
Mixin meant forIPluginWorkflowNode
plugins that only wish to provide a workflow condition that checks a condition and redirects to the if or else branch based upon the result.interface
IPluginDoUntilLoopNodeHandler<TData extends BaseDoUntilLoopProps,TState extends IWorkflowLoopDataProviding>
Mixin meant forIPluginWorkflowNode
plugins that only wish to provide a workflow do until loop that runs a test and executes the loop body for as long as the test holds true (= a do until loop).interface
IPluginTriggerHandler<TData extends BaseTriggerProps>
Mixin meant forIPluginWorkflowTrigger
plugins that only wish to provide a workflow trigger that executes some business logic.interface
IPluginWhileLoopNodeHandler<TData extends BaseWhileLoopProps,TState extends IWorkflowLoopDataProviding>
Mixin meant forIPluginWorkflowNode
plugins that only wish to provide a workflow while loop that runs a test and executes the loop body for as long as the test holds true (= a while loop).Classes in de.xima.fc.workflow.mixin that implement IPluginGenericCustomGUI Modifier and Type Class Description class
APluginActionNodeHandler<TData extends BaseActionProps>
Abstract base class meant forIPluginWorkflowNode
plugins that only wish to provide a workflow action that executes some business logic.class
APluginConditionNodeHandler<TData extends BaseConditionProps>
Abstract base class meant forIPluginWorkflowNode
plugins that only wish to provide a workflow condition that executes some business logic condition.class
APluginDoUntilLoopNodeHandler<TData extends BaseDoUntilLoopProps,TState extends IWorkflowLoopDataProviding>
Abstract base class meant forIPluginWorkflowNode
plugins that only wish to provide a do-until loop with a custom test.class
APluginTriggerHandler<TData extends BaseTriggerProps>
Abstract base class meant forIPluginWorkflowTrigger
plugins that only wish to provide a workflow action that executes some business logic.class
APluginWhileLoopNodeHandler<TData extends BaseWhileLoopProps,TState extends IWorkflowLoopDataProviding>
Abstract base class meant forIPluginWorkflowNode
plugins that only wish to provide a while loop with a custom test.
-