Package com.day.cq.workflow
Interface PayloadMap
-
public interface PayloadMap
ThePayloadMap
is listening to workflow events (started, terminated, completed and manages a payload map (only JCR_PATH payloads) in order to enable quick lookup for nodes/resources which might be subject of a workflow.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Workflow
getWorkflowInstance(java.lang.String path)
Deprecated.usegetWorkflowInstances(String, boolean)
instead!java.util.List<Workflow>
getWorkflowInstances(java.lang.String path, boolean excludeSystemWorkflows)
All
are returned.Workflow
instancesboolean
isInWorkflow(java.lang.String path)
Deprecated.useisInWorkflow(String, boolean)
instead!boolean
isInWorkflow(java.lang.String path, boolean excludeSystemWorkflows)
Checks whether aJCR_PATH
based path is subject of a runningWorkflow
instance
-
-
-
Method Detail
-
isInWorkflow
boolean isInWorkflow(java.lang.String path)
Deprecated.useisInWorkflow(String, boolean)
instead!Checks whether aJCR_PATH
based path is subject of a runningWorkflow
instance- Parameters:
path
- path to check- Returns:
true
ifJCR_PATH
based path is subject of a running workflow
-
isInWorkflow
boolean isInWorkflow(java.lang.String path, boolean excludeSystemWorkflows)
Checks whether aJCR_PATH
based path is subject of a runningWorkflow
instance- Parameters:
path
- path to checkexcludeSystemWorkflows
- set totrue
to exclude system workflows from the evaluation- Returns:
true
ifJCR_PATH
based path is subject of a running workflow
-
getWorkflowInstance
Workflow getWorkflowInstance(java.lang.String path)
Deprecated.usegetWorkflowInstances(String, boolean)
instead!The
is returned. Note:The system workflows (can be defined per osgi config) won't be taken in account here!Workflow
instance- Parameters:
path
- node path- Returns:
- the
orWorkflow
instancenull
if not existing.
-
getWorkflowInstances
java.util.List<Workflow> getWorkflowInstances(java.lang.String path, boolean excludeSystemWorkflows)
All
are returned.Workflow
instances- Parameters:
path
- node pathexcludeSystemWorkflows
- set totrue
to exclude system workflows from the evaluation- Returns:
- the list of
or an empty list is returnedWorkflow
instances
-
-