Package org.openstack4j.model.workflow
Interface ActionExecution
-
- All Superinterfaces:
Buildable<ExecutionBuilder>,Execution,ModelEntity,Serializable
- All Known Implementing Classes:
MistralActionExecution
public interface ActionExecution extends Execution
An action execution.- Author:
- Renat Akhmerov
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Object>getInput()StringgetName()Map<String,Object>getOutput()StringgetTaskExecutionId()StringgetTaskName()BooleanisAccepted()-
Methods inherited from interface org.openstack4j.model.workflow.Execution
getCreatedAt, getDescription, getId, getState, getStateInfo, getTags, getUpdatedAt, getWorkflowName
-
-
-
-
Method Detail
-
getTaskName
String getTaskName()
- Returns:
- The name of the corresponding task.
-
getTaskExecutionId
String getTaskExecutionId()
- Returns:
- The id of the corresponding task execution.
-
getName
String getName()
- Returns:
- The name of the action.
-
isAccepted
Boolean isAccepted()
- Returns:
Trueif the result of this action execution is accepted.
-
-