Package com.day.cq.workflow.job
Class WorkflowJob
- java.lang.Object
-
- com.day.cq.workflow.job.WorkflowJob
-
- All Implemented Interfaces:
Serializable
public class WorkflowJob extends Object implements Serializable
TheWorkflowJobclass provides a utility for creating event triggered job used for programmed/scripted workflow steps.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringJOB_TOPICThe job topic for adding an entry to the audit log.static StringJOB_TOPIC_WCstatic StringWORKFLOW_JOBThe event property holding theWorkflowJob.static StringWORKFLOW_JOB_ID
-
Constructor Summary
Constructors Constructor Description WorkflowJob(Map item)Creates a new WorkflowJob.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EventcreateJobEvent(Integer retryCount, int numOfParallelProcs, String jobId)Convenience method to create a job event for the workflow job.MapgetWorkItemMap()
-
-
-
Field Detail
-
JOB_TOPIC
public static final String JOB_TOPIC
The job topic for adding an entry to the audit log.- See Also:
- Constant Field Values
-
JOB_TOPIC_WC
public static final String JOB_TOPIC_WC
- See Also:
- Constant Field Values
-
WORKFLOW_JOB
public static final String WORKFLOW_JOB
The event property holding theWorkflowJob.- See Also:
- Constant Field Values
-
WORKFLOW_JOB_ID
public static final String WORKFLOW_JOB_ID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WorkflowJob
public WorkflowJob(Map item)
Creates a new WorkflowJob.- Parameters:
item- creates theWorkflowJobinstance usingMap
-
-
Method Detail
-
createJobEvent
public Event createJobEvent(Integer retryCount, int numOfParallelProcs, String jobId)
Convenience method to create a job event for the workflow job.- Parameters:
retryCount- integer. number of retriesnumOfParallelProcs- not currently usedjobId- the job id to use- Returns:
- Event
Eventthe job event created
-
-