public final class WaitTaskResumeMessage extends Object
A WaitTaskResumeMessage is required to resume a wait task. This message defines:
WorkflowEngine.resumeWaitTask(WaitTaskResumeMessage)| Constructor and Description |
|---|
WaitTaskResumeMessage(String anResumeId)
Instantiates a
WaitTaskResumeMessage with the specified resume identifier. |
| Modifier and Type | Method and Description |
|---|---|
Map<String,String> |
getOutputParameters()
Returns the output parameters given to resume the wait task.
|
String |
getResumeId()
Returns the resume identifier given to resume the wait task.
|
void |
setOutputParameters(Map<String,String> aParametersMap)
Sets the parameters to use to update the data context of the associated workflow.
|
public WaitTaskResumeMessage(String anResumeId)
WaitTaskResumeMessage with the specified resume identifier.public String getResumeId()
public void setOutputParameters(Map<String,String> aParametersMap)
By default, an automatic mapping is done with the data context variables: see
WaitTaskBean.onResume(WaitTaskOnResumeContext).
aParametersMap - a Map of parameters (key: parameter name, value: parameter value).