Package com.orchestranetworks.workflow
Class WaitTaskResumeMessage
- java.lang.Object
-
- com.orchestranetworks.workflow.WaitTaskResumeMessage
-
public final class WaitTaskResumeMessage extends Object
Represents the message given to resume a wait task.A
WaitTaskResumeMessageis 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:
WorkflowEngine.resumeWaitTask(WaitTaskResumeMessage)
-
-
Constructor Summary
Constructors Constructor Description WaitTaskResumeMessage(String anResumeId)Instantiates aWaitTaskResumeMessagewith the specified resume identifier.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>getOutputParameters()Returns the output parameters given to resume the wait task.StringgetResumeId()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 Detail
-
WaitTaskResumeMessage
public WaitTaskResumeMessage(String anResumeId)
Instantiates aWaitTaskResumeMessagewith the specified resume identifier.
-
-
Method Detail
-
getResumeId
public String getResumeId()
Returns the resume identifier given to resume the wait task.
-
setOutputParameters
public void setOutputParameters(Map<String,String> aParametersMap)
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).
-
-