Package org.openstack4j.api.workflow
Interface TaskExecutionService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
TaskExecutionServiceImpl
public interface TaskExecutionService extends RestService
Service that provides CRUD operations for task executions.- Author:
- Renat Akhmerov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskExecutionget(String id)Get task execution by its ID.List<? extends TaskExecution>list()List all task executions with details.
-
-
-
Method Detail
-
list
List<? extends TaskExecution> list()
List all task executions with details.- Returns:
- List of task executions.
-
get
TaskExecution get(String id)
Get task execution by its ID.- Parameters:
id- Task execution ID.- Returns:
- Task execution.
-
-