Class MistralWorkflowExecution
- java.lang.Object
-
- org.openstack4j.openstack.workflow.domain.BaseExecution
-
- org.openstack4j.openstack.workflow.domain.MistralWorkflowExecution
-
- All Implemented Interfaces:
Serializable,Buildable<ExecutionBuilder>,ModelEntity,Execution,WorkflowExecution
public class MistralWorkflowExecution extends BaseExecution implements WorkflowExecution
Mistral workflow execution.- Author:
- Renat Akhmerov
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMistralWorkflowExecution.MistralWorkflowExecutionBuilderMistral workflow execution builder.static classMistralWorkflowExecution.MistralWorkflowExecutions-
Nested classes/interfaces inherited from class org.openstack4j.openstack.workflow.domain.BaseExecution
BaseExecution.BaseExecutionBuilder<T extends ExecutionBuilder<T,M>,M extends BaseExecution>
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Constructor Summary
Constructors Constructor Description MistralWorkflowExecution()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MistralWorkflowExecution.MistralWorkflowExecutionBuilderbuilder()Map<String,Object>getInput()Map<String,Object>getOutput()Map<String,Object>getParameters()StringgetTaskExecutionId()MistralWorkflowExecution.MistralWorkflowExecutionBuildertoBuilder()StringtoString()-
Methods inherited from class org.openstack4j.openstack.workflow.domain.BaseExecution
getCreatedAt, getDescription, getId, getState, getStateInfo, getTags, getUpdatedAt, getWorkflowName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.openstack4j.model.workflow.Execution
getCreatedAt, getDescription, getId, getState, getStateInfo, getTags, getUpdatedAt, getWorkflowName
-
-
-
-
Method Detail
-
builder
public static MistralWorkflowExecution.MistralWorkflowExecutionBuilder builder()
-
toBuilder
public MistralWorkflowExecution.MistralWorkflowExecutionBuilder toBuilder()
- Specified by:
toBuilderin interfaceBuildable<ExecutionBuilder>
-
getParameters
public Map<String,Object> getParameters()
- Specified by:
getParametersin interfaceWorkflowExecution- Returns:
- The meta parameters of workflow execution specific to workflow type. Example: a reverse workflow requires the parameter 'task_name' which specifies the target task in the workflow graph.
-
getInput
public Map<String,Object> getInput()
- Specified by:
getInputin interfaceWorkflowExecution- Returns:
- The input parameters of this workflow execution.
-
getOutput
public Map<String,Object> getOutput()
- Specified by:
getOutputin interfaceWorkflowExecution- Returns:
- The output of this workflow execution.
-
getTaskExecutionId
public String getTaskExecutionId()
- Specified by:
getTaskExecutionIdin interfaceWorkflowExecution- Returns:
- The id of the parent task execution.
-
-