Class RunningActionModelBuilder
- java.lang.Object
-
- org.alfresco.repo.web.scripts.action.RunningActionModelBuilder
-
public class RunningActionModelBuilder extends Object
Builds up models for running actions- Since:
- 3.4
- Author:
- Nick Burch
-
-
Field Summary
Fields Modifier and Type Field Description protected static String
ACTION_CANCEL_REQUESTED
protected static String
ACTION_ID
protected static String
ACTION_INSTANCE
protected static String
ACTION_KEY
protected static String
ACTION_NODE_REF
protected static String
ACTION_RUNNING_ON
protected static String
ACTION_STARTED_AT
protected static String
ACTION_TYPE
protected org.alfresco.service.cmr.action.ActionService
actionService
protected org.alfresco.service.cmr.action.ActionTrackingService
actionTrackingService
protected static String
MODEL_DATA_ITEM
protected static String
MODEL_DATA_LIST
protected org.alfresco.service.cmr.repository.NodeService
nodeService
-
Constructor Summary
Constructors Constructor Description RunningActionModelBuilder(org.alfresco.service.cmr.repository.NodeService nodeService, org.alfresco.service.cmr.action.ActionService actionService, org.alfresco.service.cmr.action.ActionTrackingService actionTrackingService)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Map<String,Object>
buildSimpleList(List<org.alfresco.service.cmr.action.ExecutionSummary> runningActions)
Build a model containing a list of running actions for the given list of Running Actionsprotected Map<String,Object>
buildSimpleModel(org.alfresco.service.cmr.action.ExecutionSummary summary)
Build a model containing a single running action
-
-
-
Field Detail
-
MODEL_DATA_ITEM
protected static final String MODEL_DATA_ITEM
- See Also:
- Constant Field Values
-
MODEL_DATA_LIST
protected static final String MODEL_DATA_LIST
- See Also:
- Constant Field Values
-
ACTION_ID
protected static final String ACTION_ID
- See Also:
- Constant Field Values
-
ACTION_TYPE
protected static final String ACTION_TYPE
- See Also:
- Constant Field Values
-
ACTION_INSTANCE
protected static final String ACTION_INSTANCE
- See Also:
- Constant Field Values
-
ACTION_NODE_REF
protected static final String ACTION_NODE_REF
- See Also:
- Constant Field Values
-
ACTION_STARTED_AT
protected static final String ACTION_STARTED_AT
- See Also:
- Constant Field Values
-
ACTION_RUNNING_ON
protected static final String ACTION_RUNNING_ON
- See Also:
- Constant Field Values
-
ACTION_CANCEL_REQUESTED
protected static final String ACTION_CANCEL_REQUESTED
- See Also:
- Constant Field Values
-
ACTION_KEY
protected static final String ACTION_KEY
- See Also:
- Constant Field Values
-
nodeService
protected org.alfresco.service.cmr.repository.NodeService nodeService
-
actionService
protected org.alfresco.service.cmr.action.ActionService actionService
-
actionTrackingService
protected org.alfresco.service.cmr.action.ActionTrackingService actionTrackingService
-
-