|
Method Summary | ||
void |
addActionCondition(ActionCondition actionCondition) Add an action condition to the action |
|
void |
addActionCondition(int index, ActionCondition actionCondition) Add an action condition at the given index |
|
void |
addParameterValues(Map<String,Serializable> values) | |
getActionCondition(int index) Get the action condition at a given index |
||
getActionConditions() Gets a list of the action conditions for this action |
||
getActionDefinitionName() Get the name of the action definition that relates to this action |
||
getCompensatingAction() Get the compensating action. |
||
getCreatedDate() Get the date the action was created |
||
getCreator() Get the name of the user that created the action |
||
getDescription() Get the description of the action |
||
boolean |
getExecuteAsychronously() A guide for the ActionService; Should the action be executed asychronously or not? It is not a general purpose flag to indicate the action is running asychronously. |
|
getExecutionEndDate() Gets the date that the action (last) finished execution at. |
||
getExecutionFailureMessage() Gets the message of the exception which caused the Action execution failure, or null if the Action hasn't failed / has been retried. |
||
getExecutionStartDate() Gets the date that the action (last) began executing at. |
||
getExecutionStatus() Gets the current execution status of the action, such as Running or Completed. |
||
getModifiedDate() Get the date that the action was last modified |
||
getModifier() Get the name of the user that last modified the action |
||
getNodeRef() Gets the node ref that represents the saved action node. |
||
getTitle() Get the title of the action |
||
getTrackStatus() | ||
boolean |
hasActionConditions() Indicates whether the action has any conditions specified |
|
int |
indexOfActionCondition(ActionCondition actionCondition) Gets the index of an action condition |
|
void |
removeActionCondition(ActionCondition actionCondition) Removes an action condition |
|
void |
removeAllActionConditions() Removes all action conditions |
|
void |
setActionCondition(int index, ActionCondition actionCondition) Replaces the current action condition at the given index with the action condition provided. |
|
void |
setCompensatingAction(Action action) Set the compensating action. |
|
void |
setDescription(String description) Set the description of the action |
|
void |
setExecuteAsynchronously(boolean executeAsynchronously) Set the value that indicates whether the action should be executed asychronously or not. |
|
void |
setTitle(String title) Set the title of the action |
|
void |
setTrackStatus(Boolean trackStatus) Set whether the action should be tracked or not. |
Methods inherited from interface org.alfresco.service.cmr.action.ParameterizedItem |
getId, getParameterValue, getParameterValues, setParameterValue, setParameterValues |
The default is to execute the action synchronously.
This action is executed if the failure behaviour is to compensate and the action being executed fails.
|