Package org.alfresco.service.cmr.action
Class ExecutionSummary
- java.lang.Object
-
- org.alfresco.service.cmr.action.ExecutionSummary
-
public class ExecutionSummary extends java.lang.ObjectHolds core key details of an Action that is currently executing. This information is normally the limit of what theActionTrackingServicecan use when filtering lists of actions.- Author:
- Nick Burch
-
-
Constructor Summary
Constructors Constructor Description ExecutionSummary(java.lang.String actionType, java.lang.String actionId, int executionInstance)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetActionId()What is the id of the action?java.lang.StringgetActionType()What kind of action is this?intgetExecutionInstance()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.java.lang.StringtoString()
-
-
-
Method Detail
-
getActionType
public java.lang.String getActionType()
What kind of action is this?- Returns:
- The action type, typically an executor bean name
-
getActionId
public java.lang.String getActionId()
What is the id of the action?- Returns:
- The action ID
-
getExecutionInstance
public int getExecutionInstance()
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.- Returns:
- The instance ID
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-