Uses of Interface
de.xima.fc.interfaces.workflow.execution.ITaskExecutionResult
-
-
Uses of ITaskExecutionResult in de.xima.fc.interfaces.workflow.execution
Subinterfaces of ITaskExecutionResult in de.xima.fc.interfaces.workflow.execution Modifier and Type Interface Description interface
ITaskExecutionErrorResult
The result of execution aWorkflowTask
, returned by the task runner when the task was not executed successfully.interface
ITaskExecutionSuccessResult
The result of execution aWorkflowTask
, returned by the task runner when the task was executed successfully.Methods in de.xima.fc.interfaces.workflow.execution that return ITaskExecutionResult Modifier and Type Method Description ITaskExecutionResult
ITaskQueueExecutionResult. getMainResult()
Methods in de.xima.fc.interfaces.workflow.execution that return types with arguments of type ITaskExecutionResult Modifier and Type Method Description List<ITaskExecutionResult>
ITaskQueueExecutionResult. getIndividualResults()
-
Uses of ITaskExecutionResult in de.xima.fc.interfaces.workflow.params
Methods in de.xima.fc.interfaces.workflow.params that return ITaskExecutionResult Modifier and Type Method Description ITaskExecutionResult
ITriggerOnTaskFinishParams. getExecutionResult()
-
Uses of ITaskExecutionResult in de.xima.fc.servlet.event.result
Methods in de.xima.fc.servlet.event.result with parameters of type ITaskExecutionResult Modifier and Type Method Description static IDoiVerificationResult
ServletEventResultFactory. doiVerificationSuccess(IEntityContext ec, ITaskExecutionResult result, Locale locale)
-
Uses of ITaskExecutionResult in de.xima.fc.workflow.processor.logic.execution
Methods in de.xima.fc.workflow.processor.logic.execution that return ITaskExecutionResult Modifier and Type Method Description ITaskExecutionResult
WorkflowExecutionContext. createFinalResult(List<ITaskExecutionResult> individualResults)
Internal method called after the list of tasks were executed.Method parameters in de.xima.fc.workflow.processor.logic.execution with type arguments of type ITaskExecutionResult Modifier and Type Method Description ITaskExecutionResult
WorkflowExecutionContext. createFinalResult(List<ITaskExecutionResult> individualResults)
Internal method called after the list of tasks were executed. -
Uses of ITaskExecutionResult in de.xima.fc.workflow.processor.model
Methods in de.xima.fc.workflow.processor.model that return ITaskExecutionResult Modifier and Type Method Description ITaskExecutionResult
TriggerOnTaskFinishParams. getExecutionResult()
ITaskExecutionResult
TaskQueueExecutionResult. getMainResult()
Methods in de.xima.fc.workflow.processor.model that return types with arguments of type ITaskExecutionResult Modifier and Type Method Description List<ITaskExecutionResult>
TaskQueueExecutionResult. getIndividualResults()
Methods in de.xima.fc.workflow.processor.model with parameters of type ITaskExecutionResult Modifier and Type Method Description static ITaskQueueExecutionResult
TaskQueueExecutionResult. forResult(ITaskExecutionResult finalResult, List<ITaskExecutionResult> individualResults)
Method parameters in de.xima.fc.workflow.processor.model with type arguments of type ITaskExecutionResult Modifier and Type Method Description static TaskQueueExecutionResult
TaskQueueExecutionResult. forException(ITaskExecutionErrorResult errorResult, List<ITaskExecutionResult> individualResults)
static ITaskQueueExecutionResult
TaskQueueExecutionResult. forResult(ITaskExecutionResult finalResult, List<ITaskExecutionResult> individualResults)
static TaskQueueExecutionResult
TaskQueueExecutionResult. forSuccess(ITaskExecutionSuccessResult successResult, List<ITaskExecutionResult> individualResults)
Constructors in de.xima.fc.workflow.processor.model with parameters of type ITaskExecutionResult Constructor Description TriggerOnTaskFinishParams(IWorkflowExecutionContext workflowContext, IWorkflowEventData eventData, WorkflowTask task, WorkflowTrigger trigger, ITaskExecutionResult executionResult)
Creates a new instance with the given data.
-