Uses of Interface
de.xima.fc.interfaces.workflow.execution.IWorkflowFileValue
-
-
Uses of IWorkflowFileValue in de.xima.fc.exceptions
Methods in de.xima.fc.exceptions that return IWorkflowFileValue Modifier and Type Method Description IWorkflowFileValueAbstractAbruptCompletionException. getFileValue()Methods in de.xima.fc.exceptions with parameters of type IWorkflowFileValue Modifier and Type Method Description SelfAbstractAbruptCompletionException.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 IWorkflowFileValueIFileValueBuilder. build()Builds the workflow file value with the current data.IWorkflowFileValueIWorkflowVariableHandler. getDeclaredCurrentFilesForNode(WorkflowNode node)Finds the current files provided by the node while it is being executed, see alsohandler.getCurrentFileValueDescriptor().IWorkflowFileValueIBaseCompletionResult. getFileValue()default IWorkflowFileValueIWorkflowNodeResult. getFileValue()IWorkflowFileValueIWorkflowVariableHandler. 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 SelfIFileValueConfigurator. files(IWorkflowFileValue files)Adds all data from the given file value to this configurator.default IOnTaskBeginRetValBuilderIOnTaskBeginRetValBuilder. triggerFiles(IWorkflowFileValue triggerFiles)Sets (replaces) the file made available while the task belonging to the trigger is being executed.default SelfIFileValueConfigurator. 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 BuilderICompletionResultBuilder. file(IWorkflowFileValue fileValue)Sets (replaces) the files made available by the node when it was executed.default INodeThrewExceptionBuilderINodeThrewExceptionBuilder. file(IWorkflowFileValue fileValue)default INormalCompletionResultBuilderINormalCompletionResultBuilder. file(IWorkflowFileValue fileValue)default ICurrentValueBuilderICurrentValueBuilder. 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 IWorkflowFileValueIOnTaskBeginRetVal. getTriggerFiles()Gets the files provided by the trigger. -
Uses of IWorkflowFileValue in de.xima.fc.ms.test.workflow
Methods in de.xima.fc.ms.test.workflow that return IWorkflowFileValue Modifier and Type Method Description protected static IWorkflowFileValueAEventRunnerTest. getNodeFileValue(IEventExecutionResult result, WorkflowNode node)protected static IWorkflowFileValueAEventRunnerTest. getNodeFileValue(IWorkflowNodeResult nodeResult) -
Uses of IWorkflowFileValue in de.xima.fc.workflow
Classes in de.xima.fc.workflow that implement IWorkflowFileValue Modifier and Type Class Description classWorkflowFileValueDeprecated.Use the builder from the parameters given to the correspondingworkflow trigger methodorworkflow node method.Methods in de.xima.fc.workflow that return IWorkflowFileValue Modifier and Type Method Description IWorkflowFileValueWorkflowFileValueBuilder. build()Creates a new file value with the current state of this builder.static IWorkflowFileValueWorkflowFileValue. 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 IWorkflowFileValueItemData. 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.BuilderItemData.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 voidIWorkflowExecutionListener. onBeforeTaskStart(IWorkflowEventData eventData, WorkflowTask task, WorkflowTrigger trigger, Object triggerData, IWorkflowFileValue triggerFiles)Invoked just before aWorkflowTaskis 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 voidWorkflowExecutionContext. 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 IWorkflowFileValueNormalCompletionResult. getFileValue()Methods in de.xima.fc.workflow.processor.model with parameters of type IWorkflowFileValue Modifier and Type Method Description NormalCompletionResult.BuilderNormalCompletionResult.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.
-