Class SubProcessDoneWithErrorsAction
java.lang.Object
org.chenile.workflow.service.stmcmds.AbstractSTMTransitionAction<Process, SubProcessDoneWithErrorsPayload>
org.chenile.orchestrator.process.service.cmds.BaseProcessAction<SubProcessDoneWithErrorsPayload>
org.chenile.orchestrator.process.service.cmds.SubProcessDoneWithErrorsAction
- All Implemented Interfaces:
STMTransitionAction<Process>
public class SubProcessDoneWithErrorsAction
extends BaseProcessAction<SubProcessDoneWithErrorsPayload>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidtransitionTo(Process process, SubProcessDoneWithErrorsPayload 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
-
SubProcessDoneWithErrorsAction
public SubProcessDoneWithErrorsAction()
-
-
Method Details
-
transitionTo
public void transitionTo(Process process, SubProcessDoneWithErrorsPayload 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, SubProcessDoneWithErrorsPayload>- 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.
-