Package com.orchestranetworks.workflow
Class WaitTaskResumeMessage
java.lang.Object
com.orchestranetworks.workflow.WaitTaskResumeMessage
Represents the message given to resume a wait task.
A WaitTaskResumeMessage is required to resume a wait task. This message defines:
- the resume identifier associated with the wait task to resume,
- the output parameters to use to update the data context of the associated workflow.
- Since:
- 5.6.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWaitTaskResumeMessage(String anResumeId) Instantiates aWaitTaskResumeMessagewith the specified resume identifier. -
Method Summary
Modifier and TypeMethodDescriptionReturns the output parameters given to resume the wait task.Returns the resume identifier given to resume the wait task.voidsetOutputParameters(Map<String, String> aParametersMap) Sets the parameters to use to update the data context of the associated workflow.
-
Constructor Details
-
WaitTaskResumeMessage
Instantiates aWaitTaskResumeMessagewith the specified resume identifier.
-
-
Method Details
-
getResumeId
Returns the resume identifier given to resume the wait task. -
setOutputParameters
Sets the parameters to use to update the data context of the associated workflow.By default, an automatic mapping is done with the data context variables: see
WaitTaskBean.onResume(WaitTaskOnResumeContext).- Parameters:
aParametersMap- aMapof parameters (key: parameter name, value: parameter value).
-
getOutputParameters
Returns the output parameters given to resume the wait task.- Returns:
- a
Mapof parameters (key: parameter name, value: parameter value).
-