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:
Nick Burch
2010-07-20 11:24:09 +00:00
parent 0844595d01
commit 44f1aa459b
3 changed files with 122 additions and 12 deletions

View File

@@ -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;
}