Package com.adobe.granite.workflow.job
Class WorkflowJob
- java.lang.Object
-
- com.adobe.granite.workflow.job.WorkflowJob
-
- All Implemented Interfaces:
java.io.Serializable
public class WorkflowJob extends java.lang.Object implements java.io.Serializable
TheWorkflowJob
class 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 java.lang.String
JOB_TOPIC
The job topic for adding an entry to the audit log.static java.lang.String
JOB_TOPIC_WC
static java.lang.String
WORKFLOW_JOB
The event property holding theWorkflowJob
.static java.lang.String
WORKFLOW_JOB_ID
-
Constructor Summary
Constructors Constructor Description WorkflowJob(java.util.Map item)
Creates a new WorkflowJob.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Event
createJobEvent(java.lang.Integer retryCount, int numOfParallelProcs, java.lang.String jobId)
Convenience method to create a job event for the workflow job.java.util.Map
getWorkItemMap()
Returns theWorkItem
Map
of the job
-
-
-
Field Detail
-
JOB_TOPIC
public static final java.lang.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 java.lang.String JOB_TOPIC_WC
- See Also:
- Constant Field Values
-
WORKFLOW_JOB
public static final java.lang.String WORKFLOW_JOB
The event property holding theWorkflowJob
.- See Also:
- Constant Field Values
-
WORKFLOW_JOB_ID
public static final java.lang.String WORKFLOW_JOB_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getWorkItemMap
public java.util.Map getWorkItemMap()
Returns theWorkItem
Map
of the job- Returns:
- the
WorkItem
Map
of the job
-
createJobEvent
public Event createJobEvent(java.lang.Integer retryCount, int numOfParallelProcs, java.lang.String jobId)
Convenience method to create a job event for the workflow job.- Parameters:
retryCount
- the retryCountnumOfParallelProcs
- the number of parallel processesjobId
- the workflow job id- Returns:
- the created job event
-
-