Class ActionExecutionServiceImpl
- java.lang.Object
-
- org.openstack4j.openstack.internal.BaseOpenStackService
-
- org.openstack4j.openstack.workflow.internal.ActionExecutionServiceImpl
-
- All Implemented Interfaces:
ActionExecutionService,RestService
public class ActionExecutionServiceImpl extends BaseOpenStackService implements ActionExecutionService
Action 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 ActionExecutionServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActionExecutioncreate(ActionExecution actionExec)Create a new action execution.ActionResponsedelete(String id)Delete action execution by its ID.ActionExecutionget(String id)Get action execution by its ID.List<? extends ActionExecution>list()List all action 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 ActionExecution> list()
Description copied from interface:ActionExecutionServiceList all action executions with details.- Specified by:
listin interfaceActionExecutionService- Returns:
- List of action executions.
-
create
public ActionExecution create(ActionExecution actionExec)
Description copied from interface:ActionExecutionServiceCreate a new action execution.- Specified by:
createin interfaceActionExecutionService- Parameters:
actionExec- Action execution to create.- Returns:
- Created action execution.
-
get
public ActionExecution get(String id)
Description copied from interface:ActionExecutionServiceGet action execution by its ID.- Specified by:
getin interfaceActionExecutionService- Parameters:
id- Action execution ID.- Returns:
- Action execution.
-
delete
public ActionResponse delete(String id)
Description copied from interface:ActionExecutionServiceDelete action execution by its ID.- Specified by:
deletein interfaceActionExecutionService- Parameters:
id- Action execution ID.- Returns:
- Action response from the server.
-
-