mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Further ActionTrackingService work
Documentation on DTOs, and flesh out more of the logic. Existing unit tests still happy despite the new features, new unit tests to follow git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21294 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -39,14 +39,30 @@ public class ExecutionSummary {
|
||||
this.executionInstance = executionInstance;
|
||||
}
|
||||
|
||||
/**
|
||||
* What kind of action is this?
|
||||
* @return The action type, typically an executor bean name
|
||||
*/
|
||||
public String getActionType() {
|
||||
return actionType;
|
||||
}
|
||||
|
||||
/**
|
||||
* What is the id of the action?
|
||||
* @return The action ID
|
||||
*/
|
||||
public String getActionId() {
|
||||
return actionId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Which instance of the action is this?
|
||||
* Every time you start an action, it gets
|
||||
* a new instance ID, and this lets you
|
||||
* tell the difference between two copies
|
||||
* running in parallel.
|
||||
* @return The instance ID
|
||||
*/
|
||||
public int getExecutionInstance() {
|
||||
return executionInstance;
|
||||
}
|
||||
|
Reference in New Issue
Block a user