Package io.serverlessworkflow.api.end
Class ContinueAs
- java.lang.Object
-
- io.serverlessworkflow.api.end.ContinueAs
-
- All Implemented Interfaces:
Serializable
public class ContinueAs extends Object implements Serializable
End definition continue as- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContinueAs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetData()Expression which selects parts of the states data output to become the workflow data input of continued executionStringgetVersion()Version of the workflow to continue execution asWorkflowExecTimeoutgetWorkflowExecTimeout()StringgetWorkflowId()Unique id of the workflow to continue execution asvoidsetData(String data)Expression which selects parts of the states data output to become the workflow data input of continued executionvoidsetVersion(String version)Version of the workflow to continue execution asvoidsetWorkflowExecTimeout(WorkflowExecTimeout workflowExecTimeout)voidsetWorkflowId(String workflowId)Unique id of the workflow to continue execution asContinueAswithData(String data)ContinueAswithVersion(String version)ContinueAswithWorkflowExecTimeout(WorkflowExecTimeout workflowExecTimeout)ContinueAswithWorkflowId(String workflowId)
-
-
-
Method Detail
-
getWorkflowId
public String getWorkflowId()
Unique id of the workflow to continue execution as
-
setWorkflowId
public void setWorkflowId(String workflowId)
Unique id of the workflow to continue execution as
-
withWorkflowId
public ContinueAs withWorkflowId(String workflowId)
-
getVersion
public String getVersion()
Version of the workflow to continue execution as
-
setVersion
public void setVersion(String version)
Version of the workflow to continue execution as
-
withVersion
public ContinueAs withVersion(String version)
-
getData
public String getData()
Expression which selects parts of the states data output to become the workflow data input of continued execution
-
setData
public void setData(String data)
Expression which selects parts of the states data output to become the workflow data input of continued execution
-
withData
public ContinueAs withData(String data)
-
getWorkflowExecTimeout
public WorkflowExecTimeout getWorkflowExecTimeout()
-
setWorkflowExecTimeout
public void setWorkflowExecTimeout(WorkflowExecTimeout workflowExecTimeout)
-
withWorkflowExecTimeout
public ContinueAs withWorkflowExecTimeout(WorkflowExecTimeout workflowExecTimeout)
-
-