Class StatusUpdateAction
java.lang.Object
org.chenile.workflow.service.stmcmds.AbstractSTMTransitionAction<Process, StatusUpdatePayload>
org.chenile.orchestrator.process.service.cmds.StatusUpdateAction
- All Implemented Interfaces:
STMTransitionAction<Process>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidtransitionTo(Process process, StatusUpdatePayload payload, State startState, String eventId, State endState, STMInternalTransitionInvoker<?> stm, Transition transition) Implement this method to start using your expected payload type.Methods inherited from class AbstractSTMTransitionAction
doTransition
-
Constructor Details
-
StatusUpdateAction
public StatusUpdateAction()
-
-
Method Details
-
transitionTo
public void transitionTo(Process process, StatusUpdatePayload payload, State startState, String eventId, State endState, STMInternalTransitionInvoker<?> stm, Transition transition) throws Exception Description copied from class:AbstractSTMTransitionActionImplement this method to start using your expected payload type.- Specified by:
transitionToin classAbstractSTMTransitionAction<Process, StatusUpdatePayload>- Parameters:
process- the state entity that has been passed to STMpayload- The transition param with the correct payload typestartState- state at which the event occurredeventId- the event that happenedendState- the end statestm- this is for invoking other STMstransition- the definition of the entire transition in the STM configuration- Throws:
Exception- if an exception occurs.
-