Uses of Interface
de.xima.fc.interfaces.workflow.execution.IWorkflowFileValue
-
Packages that use IWorkflowFileValue Package Description de.xima.fc.exceptions Package für allgemeine Exceptionsde.xima.fc.interfaces.workflow.execution de.xima.fc.interfaces.workflow.params de.xima.fc.interfaces.workflow.retval de.xima.fc.workflow de.xima.fc.workflow.itemlist de.xima.fc.workflow.processor.iface de.xima.fc.workflow.processor.logic.execution de.xima.fc.workflow.processor.model -
-
Uses of IWorkflowFileValue in de.xima.fc.exceptions
Methods in de.xima.fc.exceptions that return IWorkflowFileValue Modifier and Type Method Description IWorkflowFileValue
AbstractAbruptCompletionException. getFileValue()
Methods in de.xima.fc.exceptions with parameters of type IWorkflowFileValue Modifier and Type Method Description Self
AbstractAbruptCompletionException.Builder. fileValue(IWorkflowFileValue fileValue)
-
Uses of IWorkflowFileValue in de.xima.fc.interfaces.workflow.execution
Methods in de.xima.fc.interfaces.workflow.execution that return IWorkflowFileValue Modifier and Type Method Description IWorkflowFileValue
IFileValueBuilder. build()
Builds the workflow file value with the current data.IWorkflowFileValue
IWorkflowVariableHandler. getDeclaredCurrentFilesForNode(WorkflowNode node)
Finds the current files provided by the node while it is being executed, see alsohandler.getCurrentFileValueDescriptor()
.IWorkflowFileValue
IBaseCompletionResult. getFileValue()
default IWorkflowFileValue
IWorkflowNodeResult. getFileValue()
IWorkflowFileValue
IWorkflowVariableHandler. getTriggerFiles()
Each trigger can provide a set of files that will be available when the task is executed.Methods in de.xima.fc.interfaces.workflow.execution that return types with arguments of type IWorkflowFileValue Modifier and Type Method Description default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromCurrentNodes(WorkflowNode... currentNodes)
Gets all file values that were provided by the given current nodes.List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromCurrentNodes(Iterable<WorkflowNode> currentNodes)
Gets all file values that were provided by the given current nodes.default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromCurrentTriggers(WorkflowTrigger... currentTriggers)
Gets all file values that were provided by the given current triggers.List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromCurrentTriggers(Iterable<WorkflowTrigger> currentTriggers)
Gets all file values that were provided by the given current triggers.default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousNodes(WorkflowNode... previousNodes)
Gets all file values that were provided by the given previous nodes.List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousNodes(Iterable<WorkflowNode> previousNodes)
Gets all file values that were provided by the given previous nodes.default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousOrCurrentNodes(WorkflowNode... nodes)
Returns all files from the given previous and current nodes (= node that either are currently being executed or that have finished execution).default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousOrCurrentNodes(Iterable<WorkflowNode> nodes)
Returns all files from the given previous and current nodes (= node that either are currently being executed or that have finished execution).default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousOrCurrentTriggers(WorkflowTrigger... triggers)
Returns all file values from the given previous and current triggers (=triggers that either are currently firing or that have fired in the past).default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousOrCurrentTriggers(Iterable<WorkflowTrigger> triggers)
Returns all file values from the given previous and current triggers (=triggers that either are currently firing or that have fired in the past).default List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousTriggers(WorkflowTrigger... previousTriggers)
Gets all file values that were provided by the given previous triggers.List<IWorkflowFileValue>
IWorkflowFileHandler. getFileValuesFromPreviousTriggers(Iterable<WorkflowTrigger> previousTriggers)
Gets all file values that were provided by the given previous triggers.Methods in de.xima.fc.interfaces.workflow.execution with parameters of type IWorkflowFileValue Modifier and Type Method Description default Self
IFileValueConfigurator. files(IWorkflowFileValue files)
Adds all data from the given file value to this configurator.default IOnTaskBeginRetValBuilder
IOnTaskBeginRetValBuilder. triggerFiles(IWorkflowFileValue triggerFiles)
Sets (replaces) the file made available while the task belonging to the trigger is being executed.default Self
IFileValueConfigurator. value(IWorkflowFileValue value)
Adds the given files to this configurator. -
Uses of IWorkflowFileValue in de.xima.fc.interfaces.workflow.params
Methods in de.xima.fc.interfaces.workflow.params with parameters of type IWorkflowFileValue Modifier and Type Method Description default Builder
ICompletionResultBuilder. file(IWorkflowFileValue fileValue)
Sets (replaces) the files made available by the node when it was executed.default INodeThrewExceptionBuilder
INodeThrewExceptionBuilder. file(IWorkflowFileValue fileValue)
default INormalCompletionResultBuilder
INormalCompletionResultBuilder. file(IWorkflowFileValue fileValue)
default ICurrentValueBuilder
ICurrentValueBuilder. withFiles(IWorkflowFileValue files)
Adds the files from the given value to the list of files made available by the node while it is being executed. -
Uses of IWorkflowFileValue in de.xima.fc.interfaces.workflow.retval
Methods in de.xima.fc.interfaces.workflow.retval that return IWorkflowFileValue Modifier and Type Method Description default IWorkflowFileValue
IOnTaskBeginRetVal. getTriggerFiles()
Gets the files provided by the trigger. -
Uses of IWorkflowFileValue in de.xima.fc.workflow
Classes in de.xima.fc.workflow that implement IWorkflowFileValue Modifier and Type Class Description class
WorkflowFileValue
Deprecated.Use the builder from the parameters given to the correspondingworkflow trigger method
orworkflow node method
.Methods in de.xima.fc.workflow that return IWorkflowFileValue Modifier and Type Method Description IWorkflowFileValue
WorkflowFileValueBuilder. build()
Creates a new file value with the current state of this builder.static IWorkflowFileValue
WorkflowFileValue. empty()
Deprecated. -
Uses of IWorkflowFileValue in de.xima.fc.workflow.itemlist
Methods in de.xima.fc.workflow.itemlist that return IWorkflowFileValue Modifier and Type Method Description IWorkflowFileValue
ItemData. getFiles()
Files to make available while the loop body is executed with the current value.Methods in de.xima.fc.workflow.itemlist with parameters of type IWorkflowFileValue Modifier and Type Method Description ItemData.Builder
ItemData.Builder. files(IWorkflowFileValue files)
Sets files to make available while the loop body is executed with the current value. -
Uses of IWorkflowFileValue in de.xima.fc.workflow.processor.iface
Methods in de.xima.fc.workflow.processor.iface with parameters of type IWorkflowFileValue Modifier and Type Method Description void
IWorkflowExecutionListener. onBeforeTaskStart(IWorkflowEventData eventData, WorkflowTask task, WorkflowTrigger trigger, Object triggerData, IWorkflowFileValue triggerFiles)
Invoked just before aWorkflowTask
is about to be executed. -
Uses of IWorkflowFileValue in de.xima.fc.workflow.processor.logic.execution
Methods in de.xima.fc.workflow.processor.logic.execution with parameters of type IWorkflowFileValue Modifier and Type Method Description void
WorkflowExecutionContext. beforeTaskStart(Object triggerData, IWorkflowFileValue triggerFiles, IWorkflowEventData eventData, WorkflowTask task, WorkflowTrigger trigger)
Invoked internally before a task is about to be executed. -
Uses of IWorkflowFileValue in de.xima.fc.workflow.processor.model
Methods in de.xima.fc.workflow.processor.model that return IWorkflowFileValue Modifier and Type Method Description IWorkflowFileValue
NormalCompletionResult. getFileValue()
Methods in de.xima.fc.workflow.processor.model with parameters of type IWorkflowFileValue Modifier and Type Method Description NormalCompletionResult.Builder
NormalCompletionResult.Builder. fileValue(IWorkflowFileValue fileValue)
Constructors in de.xima.fc.workflow.processor.model with parameters of type IWorkflowFileValue Constructor Description NormalCompletionResult(WorkflowNode node, Object alwaysValue, Object successValue, IWorkflowFileValue fileValue, List<NodeSoftErrorException> softErrors)
Deprecated.
-