public class ActionsApi
extends java.lang.Object
| Constructor and Description | 
|---|
ActionsApi(ActionsService actionsService)
Constructs Actions API endpoint initialized with corresponding service class. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
CreateBrowserActionRequestExecutor | 
createBrowserAction()
Provides executor that can be used to create a browser action. 
 | 
CreateContentActionRequestExecutor | 
createContentAction()
Provides executor that can be used to create a content action. 
 | 
DeleteActionRequestExecutor | 
delete(java.util.UUID id)
Provides executor that can be used to delete an action. 
 | 
ActionsRequestExecutor | 
fetch()
Provides executor that can be used to obtain actions. 
 | 
ContentActionFileRequestExecutor | 
fileOf(java.util.UUID id)
Provides executor that can be used to load content action file. 
 | 
UpdateBrowserActionRequestExecutor | 
updateBrowserAction(java.util.UUID id)
Provides executor that can be used to update a browser action. 
 | 
UpdateContentActionRequestExecutor | 
updateContentAction(java.util.UUID id)
Provides executor that can be used to update a content action. 
 | 
public ActionsApi(ActionsService actionsService)
actionsService - the actions API service.public ActionsRequestExecutor fetch()
public ContentActionFileRequestExecutor fileOf(java.util.UUID id)
id - the action's unique identifier.public CreateContentActionRequestExecutor createContentAction()
public CreateBrowserActionRequestExecutor createBrowserAction()
public UpdateContentActionRequestExecutor updateContentAction(java.util.UUID id)
id - the action's unique identifier.public UpdateBrowserActionRequestExecutor updateBrowserAction(java.util.UUID id)
id - the action's unique identifier.public DeleteActionRequestExecutor delete(java.util.UUID id)
id - the action's unique identifier.