Class JobDefinitionEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.JobDefinitionEntity
-
- All Implemented Interfaces:
Serializable
,DbEntity
,HasDbReferences
,HasDbRevision
,JobDefinition
public class JobDefinitionEntity extends Object implements JobDefinition, HasDbRevision, HasDbReferences, DbEntity, Serializable
- Author:
- Daniel Meyer
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
activityId
protected String
deploymentId
protected String
id
protected String
jobConfiguration
protected Long
jobPriority
protected String
jobType
timer, message, ...protected String
processDefinitionId
protected String
processDefinitionKey
protected int
revision
protected int
suspensionState
protected String
tenantId
-
Constructor Summary
Constructors Constructor Description JobDefinitionEntity()
JobDefinitionEntity(JobDeclaration<?,?> jobDeclaration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActivityId()
The Id of the activity (from BPMN 2.0 Xml) this Job Definition is associated with.String
getDeploymentId()
The id of the deployment this job definition is related to.String
getId()
String
getJobConfiguration()
The configuration of a job definition provides details about the jobs which will be created.String
getJobType()
The Type of a job.Long
getOverridingJobPriority()
Returns the execution priority for jobs of this definition, if it was set using theManagementService
API.Object
getPersistentState()
Returns a representation of the object, as would be stored in the database.String
getProcessDefinitionId()
String
getProcessDefinitionKey()
Map<String,Class>
getReferencedEntitiesIdAndClass()
Scope: IN-MEMORY referencesSet<String>
getReferencedEntityIds()
Scope: IN-MEMORY referencesint
getRevision()
int
getRevisionNext()
int
getSuspensionState()
String
getTenantId()
The id of the tenant this job definition belongs to.boolean
isSuspended()
Indicates whether this job definition is suspended.void
setActivityId(String activityId)
void
setDeploymentId(String deploymentId)
void
setId(String id)
void
setJobConfiguration(String jobConfiguration)
void
setJobPriority(Long jobPriority)
void
setJobType(String jobType)
void
setProcessDefinitionId(String processDefinitionId)
void
setProcessDefinitionKey(String processDefinitionKey)
void
setRevision(int revision)
void
setSuspensionState(int state)
void
setTenantId(String tenantId)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.camunda.bpm.engine.impl.db.HasDbReferences
getDependentEntities
-
-
-
-
Field Detail
-
id
protected String id
-
revision
protected int revision
-
processDefinitionId
protected String processDefinitionId
-
processDefinitionKey
protected String processDefinitionKey
-
activityId
protected String activityId
-
jobType
protected String jobType
timer, message, ...
-
jobConfiguration
protected String jobConfiguration
-
suspensionState
protected int suspensionState
-
jobPriority
protected Long jobPriority
-
tenantId
protected String tenantId
-
deploymentId
protected String deploymentId
-
-
Constructor Detail
-
JobDefinitionEntity
public JobDefinitionEntity()
-
JobDefinitionEntity
public JobDefinitionEntity(JobDeclaration<?,?> jobDeclaration)
-
-
Method Detail
-
getPersistentState
public Object getPersistentState()
Description copied from interface:DbEntity
Returns a representation of the object, as would be stored in the database. Used when deciding if updates have occurred to the object or not since it was last loaded.- Specified by:
getPersistentState
in interfaceDbEntity
-
getRevisionNext
public int getRevisionNext()
- Specified by:
getRevisionNext
in interfaceHasDbRevision
-
getId
public String getId()
- Specified by:
getId
in interfaceDbEntity
- Specified by:
getId
in interfaceJobDefinition
- Returns:
- the Id of the job definition.
-
getRevision
public int getRevision()
- Specified by:
getRevision
in interfaceHasDbRevision
-
setRevision
public void setRevision(int revision)
- Specified by:
setRevision
in interfaceHasDbRevision
-
isSuspended
public boolean isSuspended()
Description copied from interface:JobDefinition
Indicates whether this job definition is suspended. If a job Definition is suspended, No Jobs created form the job definition will be acquired by the job executor.- Specified by:
isSuspended
in interfaceJobDefinition
- Returns:
- true if this Job Definition is currently suspended.
-
getProcessDefinitionId
public String getProcessDefinitionId()
- Specified by:
getProcessDefinitionId
in interfaceJobDefinition
- Returns:
- the id of the
ProcessDefinition
this job definition is associated with.
-
setProcessDefinitionId
public void setProcessDefinitionId(String processDefinitionId)
-
getActivityId
public String getActivityId()
Description copied from interface:JobDefinition
The Id of the activity (from BPMN 2.0 Xml) this Job Definition is associated with.- Specified by:
getActivityId
in interfaceJobDefinition
- Returns:
- the activity id for this Job Definition.
-
setActivityId
public void setActivityId(String activityId)
-
getJobType
public String getJobType()
Description copied from interface:JobDefinition
The Type of a job. Asynchronous continuation, timer, ...- Specified by:
getJobType
in interfaceJobDefinition
- Returns:
- the type of a Job.
-
setJobType
public void setJobType(String jobType)
-
getJobConfiguration
public String getJobConfiguration()
Description copied from interface:JobDefinition
The configuration of a job definition provides details about the jobs which will be created. For timer jobs this method returns the timer configuration.- Specified by:
getJobConfiguration
in interfaceJobDefinition
- Returns:
- the configuration of this job definition.
-
setJobConfiguration
public void setJobConfiguration(String jobConfiguration)
-
getProcessDefinitionKey
public String getProcessDefinitionKey()
- Specified by:
getProcessDefinitionKey
in interfaceJobDefinition
- Returns:
- the key of the
ProcessDefinition
this job definition is associated with.
-
setProcessDefinitionKey
public void setProcessDefinitionKey(String processDefinitionKey)
-
getSuspensionState
public int getSuspensionState()
-
setSuspensionState
public void setSuspensionState(int state)
-
getOverridingJobPriority
public Long getOverridingJobPriority()
Description copied from interface:JobDefinition
Returns the execution priority for jobs of this definition, if it was set using the
ManagementService
API. When a job is assigned a priority, the job definition's overriding priority (if set) is used instead of the values defined in the BPMN XML.- Specified by:
getOverridingJobPriority
in interfaceJobDefinition
- Returns:
- the priority that overrides the default/BPMN XML priority or
null
if no overriding priority is set
-
setJobPriority
public void setJobPriority(Long jobPriority)
-
getTenantId
public String getTenantId()
Description copied from interface:JobDefinition
The id of the tenant this job definition belongs to. Can benull
if the definition belongs to no single tenant.- Specified by:
getTenantId
in interfaceJobDefinition
-
setTenantId
public void setTenantId(String tenantId)
-
getDeploymentId
public String getDeploymentId()
Description copied from interface:JobDefinition
The id of the deployment this job definition is related to. In a deployment-aware setup, this leads to all jobs of the same definition being executed on the same node.- Specified by:
getDeploymentId
in interfaceJobDefinition
-
setDeploymentId
public void setDeploymentId(String deploymentId)
-
getReferencedEntityIds
public Set<String> getReferencedEntityIds()
Description copied from interface:HasDbReferences
Scope: IN-MEMORY references
- Specified by:
getReferencedEntityIds
in interfaceHasDbReferences
- Returns:
- the ids of the entities that this entity references. Should only return ids for entities of the same type
-
getReferencedEntitiesIdAndClass
public Map<String,Class> getReferencedEntitiesIdAndClass()
Description copied from interface:HasDbReferences
Scope: IN-MEMORY references
- Specified by:
getReferencedEntitiesIdAndClass
in interfaceHasDbReferences
- Returns:
- a map of the ids and the entities' classes that this entity references. It's used when trying to determine if there was an Optimistic Locking occurrence on an INSERT or UPDATE of an object of this type.
-
-