package org.alfresco.service.cmr.action; import java.io.Serializable; import java.util.Date; import java.util.List; import java.util.Map; import org.alfresco.api.AlfrescoPublicApi; import org.alfresco.service.cmr.repository.NodeRef; /** * The rule action interface * * @author Roy Wetherall */ @AlfrescoPublicApi public interface Action extends ParameterizedItem { /** * Gets the node ref that represents the saved action node. * Returns null id unsaved. * * @return the action node reference */ NodeRef getNodeRef(); /** * Get the name of the action definition that relates to this action * * @return the action defintion name */ String getActionDefinitionName(); /** * Get the title of the action * * @return the title of the action */ String getTitle(); /** * Set the title of the action * * @param title the title of the action */ void setTitle(String title); /** * Get the description of the action * * @return the description of the action */ String getDescription(); /** * Set the description of the action * * @param description the description of the action */ void setDescription(String description); /** * @return true if the action must be tracked by the * {@link ActionTrackingService}, false if it must NOT be * tracked or null to use the action definition's default. */ Boolean getTrackStatus(); /** * Set whether the action should be tracked or not. *
* The option of tracking can be null i.e. unset, indicating that the * defaults of the action definition should be used. This is to allow manual overriding * of the property when it becomes supported by the UI. * * @param trackStatus true if the action must be tracked by the * {@link ActionTrackingService}, false if it must NOT be * tracked or null to use the action definition's default. */ void setTrackStatus(Boolean trackStatus); /** * Gets a value indicating whether the action should be executed asychronously or not. ** The default is to execute the action synchronously. * * @return true if the action is executed asychronously, false otherwise. */ boolean getExecuteAsychronously(); /** * Set the value that indicates whether the action should be executed asychronously or not. * * @param executeAsynchronously true if the action is to be executed asychronously, false otherwise. */ void setExecuteAsynchronously(boolean executeAsynchronously); /** * Get the compensating action. *
* This action is executed if the failure behaviour is to compensate and the action being executed
* fails.
*
* @return the compensating action
*/
Action getCompensatingAction();
/**
* Set the compensating action.
*
* @param action the compensating action
*/
void setCompensatingAction(Action action);
/**
* Get the date the action was created
*
* @return action creation date
*/
Date getCreatedDate();
/**
* Get the name of the user that created the action
*
* @return user name
*/
String getCreator();
/**
* Get the date that the action was last modified
*
* @return aciton modification date
*/
Date getModifiedDate();
/**
* Get the name of the user that last modified the action
*
* @return user name
*/
String getModifier();
/**
* Indicates whether the action has any conditions specified
*
* @return true if the action has any conditions specified, flase otherwise
*/
boolean hasActionConditions();
/**
* Gets the index of an action condition
*
* @param actionCondition the action condition
* @return the index
*/
int indexOfActionCondition(ActionCondition actionCondition);
/**
* Gets a list of the action conditions for this action
*
* @return list of action conditions
*/
List