Package org.openstack4j.model.workflow
Interface Execution
-
- All Superinterfaces:
Buildable<ExecutionBuilder>,ModelEntity,Serializable
- All Known Subinterfaces:
ActionExecution,TaskExecution,WorkflowExecution
- All Known Implementing Classes:
BaseExecution,MistralActionExecution,MistralTaskExecution,MistralWorkflowExecution
public interface Execution extends ModelEntity, Buildable<ExecutionBuilder>
Base interface for all execution objects.- 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 DategetCreatedAt()StringgetDescription()StringgetId()StategetState()StringgetStateInfo()List<String>getTags()DategetUpdatedAt()StringgetWorkflowName()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- The id of this execution.
-
getDescription
String getDescription()
- Returns:
- The description of this execution.
-
getWorkflowName
String getWorkflowName()
- Returns:
- The name of the workflow that this execution belongs to.
-
getState
State getState()
- Returns:
- Execution state.
-
getStateInfo
String getStateInfo()
- Returns:
- Execution state info.
-
getCreatedAt
Date getCreatedAt()
- Returns:
- The time that this entity was created at.
-
getUpdatedAt
Date getUpdatedAt()
- Returns:
- The time that this entity was last updated at.
-
-