Class DoneWithErrorsAction
java.lang.Object
org.chenile.workflow.service.stmcmds.AbstractSTMTransitionAction<Process, DoneWithErrorsPayload>
org.chenile.orchestrator.process.service.cmds.BaseProcessAction<DoneWithErrorsPayload>
org.chenile.orchestrator.process.service.cmds.DoneWithErrorsAction
- All Implemented Interfaces:
STMTransitionAction<Process>
This is called if this process is done with errors.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidtransitionTo(Process process, DoneWithErrorsPayload 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 BaseProcessAction
addErrorToProcessMethods inherited from class AbstractSTMTransitionAction
doTransition
-
Field Details
-
logger
org.slf4j.Logger logger
-
-
Constructor Details
-
DoneWithErrorsAction
public DoneWithErrorsAction()
-
-
Method Details
-
transitionTo
public void transitionTo(Process process, DoneWithErrorsPayload 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, DoneWithErrorsPayload>- 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.
-