Class TaskExecutionServiceImpl
- java.lang.Object
-
- org.openstack4j.openstack.internal.BaseOpenStackService
-
- org.openstack4j.openstack.workflow.internal.TaskExecutionServiceImpl
-
- All Implemented Interfaces:
TaskExecutionService,RestService
public class TaskExecutionServiceImpl extends BaseOpenStackService implements TaskExecutionService
Task execution service implementation.- Author:
- Renat Akhmerov
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
BaseOpenStackService.Invocation<R>
-
-
Constructor Summary
Constructors Constructor Description TaskExecutionServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete 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.-
Methods inherited from class org.openstack4j.openstack.internal.BaseOpenStackService
delete, deleteWithResponse, get, getProvider, getServiceVersion, getWithResponse, getXOpenstackRequestId, head, patch, patchWithResponse, post, postWithResponse, put, putWithResponse, request, toList, uri
-
-
-
-
Method Detail
-
list
public List<? extends TaskExecution> list()
Description copied from interface:TaskExecutionServiceList all task executions with details.- Specified by:
listin interfaceTaskExecutionService- Returns:
- List of task executions.
-
get
public TaskExecution get(String id)
Description copied from interface:TaskExecutionServiceGet task execution by its ID.- Specified by:
getin interfaceTaskExecutionService- Parameters:
id- Task execution ID.- Returns:
- Task execution.
-
-