Uses of Interface
io.automatiko.engine.api.workflow.workitem.Transition
-
Packages that use Transition Package Description io.automatiko.engine.api.event.process Events emitted while process instances are executing.io.automatiko.engine.api.runtime.process The process runtime classes.io.automatiko.engine.api.workflow io.automatiko.engine.api.workflow.workitem -
-
Uses of Transition in io.automatiko.engine.api.event.process
Methods in io.automatiko.engine.api.event.process that return Transition Modifier and Type Method Description Transition<?>ProcessWorkItemTransitionEvent. getTransition()Returns transition that is applied to the work item -
Uses of Transition in io.automatiko.engine.api.runtime.process
Methods in io.automatiko.engine.api.runtime.process with parameters of type Transition Modifier and Type Method Description default voidWorkItemHandler. transitionToPhase(WorkItem workItem, WorkItemManager manager, Transition<?> transition)Allows to transition given work item into another life cycle phase as defined in the given transition object.default voidWorkItemManager. transitionWorkItem(String id, Transition<?> transition)Transition work item with given id into the next life cycle phase. -
Uses of Transition in io.automatiko.engine.api.workflow
Methods in io.automatiko.engine.api.workflow with parameters of type Transition Modifier and Type Method Description voidProcessInstance. transitionWorkItem(String id, Transition<?> transition)Transition work item belonging to this process instance not another life cycle phase -
Uses of Transition in io.automatiko.engine.api.workflow.workitem
Methods in io.automatiko.engine.api.workflow.workitem with parameters of type Transition Modifier and Type Method Description default voidLifeCyclePhase. apply(WorkItem workitem, Transition<?> transition)Optional extra work to be applied on work item upon transition to this phaseTLifeCycle. transitionTo(WorkItem workItem, WorkItemManager manager, Transition<T> transition)Perform actual transition to the target phase defined via given transition
-