org.alfresco.service.cmr.action
Interface ActionServiceTransport

All Known Implementing Classes:
ActionServiceTransportImpl

public interface ActionServiceTransport

This is the interface for over the transport of ActionService. It's job is to tunnel an authentication token for each call.


Method Summary
 Action createAction(java.lang.String ticket, java.lang.String name)
          Create a new action
 Action createAction(java.lang.String ticket, java.lang.String name, java.util.Map params)
          Create a new action specifying the initial set of parameter values
 ActionCondition createActionCondition(java.lang.String ticket, java.lang.String name)
          Create an action condition
 ActionCondition createActionCondition(java.lang.String ticket, java.lang.String name, java.util.Map params)
          Create an action condition specifying the initial set of parameter values
 CompositeAction createCompositeAction(java.lang.String ticket)
          Create a composite action
 boolean evaluateAction(java.lang.String ticket, Action action, org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef)
          Evaluted the conditions set on an action.
 boolean evaluateActionCondition(java.lang.String ticket, ActionCondition condition, org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef)
          Evaluate an action condition.
 void executeAction(java.lang.String ticket, Action action, org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef)
          The actions conditions are always checked.
 void executeAction(java.lang.String ticket, Action action, org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef, boolean checkConditions)
          The action is executed based on the asynchronous attribute of the action.
 void executeAction(java.lang.String ticket, Action action, org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef, boolean checkConditions, boolean executeAsynchronously)
          Executes the specified action upon the node reference provided.
 Action getAction(java.lang.String ticket, org.alfresco.service.cmr.repository.NodeRef nodeRef, java.lang.String actionId)
          Gets an action stored against a given node reference.
 ActionConditionDefinition getActionConditionDefinition(java.lang.String ticket, java.lang.String name)
          Get a named action condition definition
 java.util.List getActionConditionDefinitions(java.lang.String ticket)
          Get all the action condition definitions
 ActionDefinition getActionDefinition(java.lang.String ticket, java.lang.String name)
          Get a named action definition
 java.util.List getActionDefinitions(java.lang.String ticket)
          Get all the action definitions
 java.util.List getActionDefinitions(java.lang.String ticket, org.alfresco.service.cmr.repository.NodeRef nodeRef)
          Get all the action definitions that are applicable for the given node, based on its type and aspects.
 java.util.List getActions(java.lang.String ticket, org.alfresco.service.cmr.repository.NodeRef nodeRef)
          Gets all the actions currently saved on the given node reference.
 ParameterConstraint getParameterConstraint(java.lang.String ticket, java.lang.String name)
          Get a named parameter constraint
 java.util.List getParameterConstraints(java.lang.String ticket)
          Get all the parameter constraints
 void removeAction(java.lang.String ticket, org.alfresco.service.cmr.repository.NodeRef nodeRef, Action action)
          Removes an action associated with a node reference.
 void removeAllActions(java.lang.String ticket, org.alfresco.service.cmr.repository.NodeRef nodeRef)
          Removes all actions associated with a node reference
 void saveAction(java.lang.String ticket, org.alfresco.service.cmr.repository.NodeRef nodeRef, Action action)
          Save an action against a node reference.
 

Method Detail

getActionDefinition

ActionDefinition getActionDefinition(java.lang.String ticket,
                                     java.lang.String name)
Get a named action definition

Parameters:
name - the name of the action definition
Returns:
the action definition

getActionDefinitions

java.util.List getActionDefinitions(java.lang.String ticket)
Get all the action definitions

Returns:
the list action definitions

getActionDefinitions

java.util.List getActionDefinitions(java.lang.String ticket,
                                    org.alfresco.service.cmr.repository.NodeRef nodeRef)
Get all the action definitions that are applicable for the given node, based on its type and aspects.

Parameters:
nodeRef - the node reference
Returns:
a list of applicable action definitions

getActionConditionDefinition

ActionConditionDefinition getActionConditionDefinition(java.lang.String ticket,
                                                       java.lang.String name)
Get a named action condition definition

Parameters:
name - the name of the action condition definition
Returns:
the action condition definition

getActionConditionDefinitions

java.util.List getActionConditionDefinitions(java.lang.String ticket)
Get all the action condition definitions

Returns:
the list of action condition definitions

getParameterConstraint

ParameterConstraint getParameterConstraint(java.lang.String ticket,
                                           java.lang.String name)
Get a named parameter constraint

Parameters:
name - the name of the parameter constraint
Returns:
this parameter condition

getParameterConstraints

java.util.List getParameterConstraints(java.lang.String ticket)
Get all the parameter constraints

Returns:
the list of all parameter constraints

createAction

Action createAction(java.lang.String ticket,
                    java.lang.String name)
Create a new action

Parameters:
name - the action definition name
Returns:
the action

createAction

Action createAction(java.lang.String ticket,
                    java.lang.String name,
                    java.util.Map params)
Create a new action specifying the initial set of parameter values

Parameters:
name - the action definition name
params - the parameter values
Returns:
the action

createCompositeAction

CompositeAction createCompositeAction(java.lang.String ticket)
Create a composite action

Returns:
the composite action

createActionCondition

ActionCondition createActionCondition(java.lang.String ticket,
                                      java.lang.String name)
Create an action condition

Parameters:
name - the action condition definition name
Returns:
the action condition

createActionCondition

ActionCondition createActionCondition(java.lang.String ticket,
                                      java.lang.String name,
                                      java.util.Map params)
Create an action condition specifying the initial set of parameter values

Parameters:
name - the action condition definition name
params - the parameter values
Returns:
the action condition

executeAction

void executeAction(java.lang.String ticket,
                   Action action,
                   org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef)
The actions conditions are always checked.

Parameters:
action - the action
actionedUponNodeRef - the actioned upon node reference
See Also:
ActionService.executeAction(Action, NodeRef, boolean)

executeAction

void executeAction(java.lang.String ticket,
                   Action action,
                   org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef,
                   boolean checkConditions)
The action is executed based on the asynchronous attribute of the action.

Parameters:
action - the action
actionedUponNodeRef - the actioned upon node reference
checkConditions - indicates whether the conditions should be checked
See Also:
ActionService.executeAction(Action, NodeRef, boolean, boolean)

executeAction

void executeAction(java.lang.String ticket,
                   Action action,
                   org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef,
                   boolean checkConditions,
                   boolean executeAsynchronously)
Executes the specified action upon the node reference provided.

If specified that the conditions should be checked then any conditions set on the action are evaluated.

If the conditions fail then the action is not executed.

If an action has no conditions then the action will always be executed.

If the conditions are not checked then the action will always be executed.

Parameters:
action - the action
actionedUponNodeRef - the actioned upon node reference
checkConditions - indicates whether the conditions should be checked before executing the action
executeAsynchronously - indicates whether the action should be executed asychronously or not, this value overrides the value set on the action its self

evaluateAction

boolean evaluateAction(java.lang.String ticket,
                       Action action,
                       org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef)
Evaluted the conditions set on an action.

Returns true if the action has no conditions.

If the action has more than one condition their results are combined using the 'AND' logical operator.

Parameters:
action - the action
actionedUponNodeRef - the actioned upon node reference
Returns:
true if the condition succeeds, false otherwise

evaluateActionCondition

boolean evaluateActionCondition(java.lang.String ticket,
                                ActionCondition condition,
                                org.alfresco.service.cmr.repository.NodeRef actionedUponNodeRef)
Evaluate an action condition.

Parameters:
condition - the action condition
actionedUponNodeRef - the actioned upon node reference
Returns:
true if the condition succeeds, false otherwise

saveAction

void saveAction(java.lang.String ticket,
                org.alfresco.service.cmr.repository.NodeRef nodeRef,
                Action action)
Save an action against a node reference.

The node will be made configurable if it is not already.

If the action already exists then its details will be updated.

Parameters:
nodeRef - the node reference
action - the action

getActions

java.util.List getActions(java.lang.String ticket,
                          org.alfresco.service.cmr.repository.NodeRef nodeRef)
Gets all the actions currently saved on the given node reference.

Parameters:
nodeRef - the node reference
Returns:
the list of actions

getAction

Action getAction(java.lang.String ticket,
                 org.alfresco.service.cmr.repository.NodeRef nodeRef,
                 java.lang.String actionId)
Gets an action stored against a given node reference.

Returns null if the action can not be found.

Parameters:
nodeRef - the node reference
actionId - the action id
Returns:
the action

removeAction

void removeAction(java.lang.String ticket,
                  org.alfresco.service.cmr.repository.NodeRef nodeRef,
                  Action action)
Removes an action associated with a node reference.

Parameters:
nodeRef - the node reference
action - the action

removeAllActions

void removeAllActions(java.lang.String ticket,
                      org.alfresco.service.cmr.repository.NodeRef nodeRef)
Removes all actions associated with a node reference

Parameters:
nodeRef - the node reference


Copyright © 2005 - 2010 Alfresco Software, Inc. All Rights Reserved.