Package io.serverlessworkflow.api.end
Class ContinueAs
- java.lang.Object
-
- io.serverlessworkflow.api.end.ContinueAs
-
- All Implemented Interfaces:
Serializable
@Generated("jsonschema2pojo") 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 String
getData()
Expression which selects parts of the states data output to become the workflow data input of continued executionString
getVersion()
Version of the workflow to continue execution asWorkflowExecTimeout
getWorkflowExecTimeout()
String
getWorkflowId()
Unique id of the workflow to continue execution asvoid
setData(String data)
Expression which selects parts of the states data output to become the workflow data input of continued executionvoid
setVersion(String version)
Version of the workflow to continue execution asvoid
setWorkflowExecTimeout(WorkflowExecTimeout workflowExecTimeout)
void
setWorkflowId(String workflowId)
Unique id of the workflow to continue execution asContinueAs
withData(String data)
ContinueAs
withVersion(String version)
ContinueAs
withWorkflowExecTimeout(WorkflowExecTimeout workflowExecTimeout)
ContinueAs
withWorkflowId(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)
-
-