Package de.xima.fc.workflow.mixin
Class APluginActionNodeHandler<TData extends BaseActionProps>
java.lang.Object
de.xima.fc.workflow.mixin.APluginActionNodeHandler<TData>
- Type Parameters:
TData- Type of the node's properties model, seeIPluginActionNodeHandler.
- All Implemented Interfaces:
INameProviding,ITransferable,INamedUiElement,IResourceBundleLocator,IWorkflowNodeFlowAnalyzer<TData>,IElementHandler<TData,,WorkflowNode> IExecutionResultDescriptor,ICustomParametersUpdateable,IWorkflowElementTypeProviding,IBeanValidatingElement<TData,,WorkflowNode> IBeanValidatingNode<TData>,IExecutingLikeActionNode<TData>,IHierarchyValidatingNode<TData>,ISingleElementPrototype<TData,,WorkflowNode> ISingleNodePrototype<TData>,INodeHandler<TData>,IWorkflowNodeTypeProviding,IPluginGenericCustomGUI<IPluginWorkflowNodeBean>,IFCPlugin,IPluginWorkflowNode,IBaseActionClientHandlerNode<TData>,IBaseActionNode<TData>,IPluginActionNodeHandler<TData>,ISingleBaseActionNodePrototype<TData>,Serializable
public abstract class APluginActionNodeHandler<TData extends BaseActionProps>
extends Object
implements IPluginActionNodeHandler<TData>
Abstract base class meant for
IPluginWorkflowNode plugins that only wish to provide a workflow action that
executes some business logic.
Eliminates the last bits of boilerplate code remaining in IPluginActionNodeHandler . When you do not need
a different super class, you may use this. Otherwise, just implement the mixin IPluginActionNodeHandler and
add a getter for IPluginActionNodeHandler.getPluginInitializeData(). See IPluginActionNodeHandler for
further details.
- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
-
Field Summary
Fields inherited from interface de.xima.fc.interfaces.workflow.elements.IElementHandler
CURRENT_HANDLER_VERSIONFields inherited from interface de.xima.fc.plugin.interfaces.IFCPlugin
CONFIG_FILENAMEFields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAMEFields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidinitialize(IPluginInitializeData initializeData) Callback method that is invoked when this plugin is initialized.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface de.xima.fc.workflow.mixin.IBaseActionClientHandlerNode
getActionViewType, getCascadingStyleSheet, getJavaScript, isAlwaysCompletesAbruptly, isSelectableMethods inherited from interface de.xima.fc.workflow.mixin.IBaseActionNode
isValidChildCount, isValidChildType, isValidParentType, validateLocalMethods inherited from interface de.xima.fc.interfaces.workflow.mixin.IBeanValidatingElement
getValidationGroupsMethods inherited from interface de.xima.fc.interfaces.workflow.ICustomParametersUpdateable
updateCustomParamsMethods inherited from interface de.xima.fc.interfaces.workflow.elements.IElementHandler
extractSearchTerms, getCascadingStyleSheet, getDisplayLabel, getElementSummaryModel, getElementSummaryXhtml, getFastJsonConverter, getFilterCriteriaForEntities, getHelpPageLocation, getJavaScript, isAvailable, isHasUserVisibleName, readEntityReferences, readPlaceholders, validateGlobal, writeEntityReferences, writePlaceholdersMethods inherited from interface de.xima.fc.interfaces.workflow.mixin.IExecutingLikeActionNode
createFlowGraphMethods inherited from interface de.xima.fc.interfaces.workflow.execution.IExecutionResultDescriptor
getAttachmentValueDescriptor, getFileValueDescriptorMethods inherited from interface de.xima.fc.plugin.interfaces.IFCPlugin
getDescription, initPlugin, install, shutdown, shutdown, uninstall, validateConfigurationDataMethods inherited from interface de.xima.fc.interfaces.workflow.nodes.INodeHandler
getLocalizedTypeName, getRelatedNodeTypes, isCreateProtocolEntryAfterExecution, isCreateProtocolEntryAfterExecution, isReplacePlaceholderBeforeExecutionMethods inherited from interface de.xima.fc.workflow.mixin.IPluginActionNodeHandler
execute, extractDescription, extractName, getAlwaysValueDescriptor, getDataModelClass, getDescription, getDisplayName, getErrorCodeClass, getErrorValueDescriptor, getI18nKeyActionLabel, getI18nKeyActionSearchText, getI18nKeyActionSubLabel, getI18nKeyActionTitle, getI18nKeyDescription, getI18nKeyDisplayName, getMainCategory, getMainPluginBeanClass, getName, getNodeHandler, getPropertiesBeanClass, getPropertiesViewXhtml, getPropertiesViewXhtmlName, getPropertiesViewXhtmlPath, getPrototypeIcon, getPrototypeLabel, getPrototypeSearchText, getPrototypeSubLabel, getPrototypeTitle, getResourceBundle, getResourceBundlePath, getSoftErrorCodeClass, getSoftErrorValueDescriptor, getSuccessValueDescriptor, getType, getUnmanagedBeans, getVersionMethods inherited from interface de.xima.fc.plugin.interfaces.workflow.IPluginWorkflowNode
getXhtmlViewMethods inherited from interface de.xima.fc.workflow.mixin.ISingleBaseActionNodePrototype
getPrototypeModelData, getThemeColorMethods inherited from interface de.xima.fc.interfaces.workflow.mixin.ISingleElementPrototype
getPrototypeSortKey, getPrototypeTags, getSubCategoryMethods inherited from interface de.xima.fc.interfaces.workflow.mixin.ISingleNodePrototype
getNodePrototypes, getPrototypeElement
-
Constructor Details
-
APluginActionNodeHandler
public APluginActionNodeHandler()
-
-
Method Details
-
initialize
Description copied from interface:IFCPluginCallback method that is invoked when this plugin is initialized.- Specified by:
initializein interfaceIFCPlugin- Parameters:
initializeData-IPluginInitializeData- Throws:
FCPluginException- May be thrown when an error occurred during the initialization process. When an error is thrown, this plugin will be deactivated and not put into service.
-
getPluginInitializeData
- Specified by:
getPluginInitializeDatain interfaceIPluginActionNodeHandler<TData extends BaseActionProps>- Returns:
- The
IPluginInitializeData, as they were passed toIFCPlugin.initialize(IPluginInitializeData). Implementation should usually just store the data in aprivate volatilefield and return it in this method.
-