Package org.openstack4j.model.workflow
Interface WorkflowEnvironment
-
- All Superinterfaces:
Buildable<WorkflowEnvironmentBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
MistralWorkflowEnvironment
public interface WorkflowEnvironment extends ModelEntity, Buildable<WorkflowEnvironmentBuilder>
A workflow environment.- 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()StringgetName()StringgetProjectId()ScopegetScope()DategetUpdatedAt()Map<String,Object>getVariables()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- The id of this environment.
-
getProjectId
String getProjectId()
- Returns:
- The project id of this environment.
-
getScope
Scope getScope()
- Returns:
- The scope of this environment.
-
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.
-
getName
String getName()
- Returns:
- The name of this environment.
-
getDescription
String getDescription()
- Returns:
- The description of this environment.
-
-