Class EventSubscriptionEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.persistence.entity.EventSubscriptionEntity
-
- All Implemented Interfaces:
Serializable
,DbEntity
,HasDbReferences
,HasDbRevision
,EventSubscription
public class EventSubscriptionEntity extends Object implements EventSubscription, DbEntity, HasDbRevision, HasDbReferences, Serializable
- Author:
- Daniel Meyer
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ActivityImpl
activity
protected String
activityId
protected String
configuration
protected Date
created
protected String
eventName
protected String
eventType
protected ExecutionEntity
execution
protected String
executionId
protected String
id
protected EventSubscriptionJobDeclaration
jobDeclaration
protected String
processInstanceId
protected int
revision
protected String
tenantId
-
Constructor Summary
Constructors Constructor Description EventSubscriptionEntity()
EventSubscriptionEntity(EventType eventType)
EventSubscriptionEntity(ExecutionEntity executionEntity, EventType eventType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
addToExecution()
static EventSubscriptionEntity
createAndInsert(ExecutionEntity executionEntity, EventType eventType, ActivityImpl activity)
static EventSubscriptionEntity
createAndInsert(ExecutionEntity executionEntity, EventType eventType, ActivityImpl activity, String configuration)
void
delete()
boolean
equals(Object obj)
void
eventReceived(Object payload, boolean processASync)
void
eventReceived(Object payload, Object payloadLocal, String businessKey, boolean processASync)
ActivityImpl
getActivity()
String
getActivityId()
The identifier of the activity that this event subscription belongs to.String
getConfiguration()
Date
getCreated()
The time this event subscription was created.String
getEventName()
The name of the event this subscription belongs to as defined in the process model.String
getEventType()
The event subscriptions type.ExecutionEntity
getExecution()
String
getExecutionId()
The execution that is subscribed on the referenced event.String
getId()
The unique identifier of the event subscription.EventSubscriptionJobDeclaration
getJobDeclaration()
Object
getPersistentState()
Returns a representation of the object, as would be stored in the database.ProcessDefinitionEntity
getProcessDefinition()
String
getProcessInstanceId()
The process instance this subscription belongs to.Map<String,Class>
getReferencedEntitiesIdAndClass()
Scope: IN-MEMORY referencesSet<String>
getReferencedEntityIds()
Scope: IN-MEMORY referencesint
getRevision()
int
getRevisionNext()
String
getTenantId()
The id of the tenant this event subscription belongs to.int
hashCode()
void
insert()
boolean
isSubscriptionForEventType(EventType eventType)
protected void
processEventSync(Object payload)
protected void
processEventSync(Object payload, Object payloadLocal, String businessKey)
protected void
removeFromExecution()
protected void
scheduleEventAsync(Object payload, Object payloadLocal, String businessKey)
void
setActivity(ActivityImpl activity)
void
setActivityId(String activityId)
void
setConfiguration(String configuration)
void
setCreated(Date created)
void
setEventName(String eventName)
void
setEventType(String eventType)
void
setExecution(ExecutionEntity execution)
void
setExecutionId(String executionId)
void
setId(String id)
void
setProcessInstanceId(String processInstanceId)
void
setRevision(int revision)
void
setTenantId(String tenantId)
String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, 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
-
eventType
protected String eventType
-
eventName
protected String eventName
-
executionId
protected String executionId
-
processInstanceId
protected String processInstanceId
-
activityId
protected String activityId
-
configuration
protected String configuration
-
created
protected Date created
-
tenantId
protected String tenantId
-
execution
protected ExecutionEntity execution
-
activity
protected ActivityImpl activity
-
jobDeclaration
protected EventSubscriptionJobDeclaration jobDeclaration
-
-
Constructor Detail
-
EventSubscriptionEntity
public EventSubscriptionEntity()
-
EventSubscriptionEntity
public EventSubscriptionEntity(EventType eventType)
-
EventSubscriptionEntity
public EventSubscriptionEntity(ExecutionEntity executionEntity, EventType eventType)
-
-
Method Detail
-
eventReceived
public void eventReceived(Object payload, boolean processASync)
-
eventReceived
public void eventReceived(Object payload, Object payloadLocal, String businessKey, boolean processASync)
-
processEventSync
protected void processEventSync(Object payload)
-
processEventSync
protected void processEventSync(Object payload, Object payloadLocal, String businessKey)
-
scheduleEventAsync
protected void scheduleEventAsync(Object payload, Object payloadLocal, String businessKey)
-
delete
public void delete()
-
insert
public void insert()
-
createAndInsert
public static EventSubscriptionEntity createAndInsert(ExecutionEntity executionEntity, EventType eventType, ActivityImpl activity)
-
createAndInsert
public static EventSubscriptionEntity createAndInsert(ExecutionEntity executionEntity, EventType eventType, ActivityImpl activity, String configuration)
-
addToExecution
protected void addToExecution()
-
removeFromExecution
protected void removeFromExecution()
-
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
-
getExecution
public ExecutionEntity getExecution()
-
setExecution
public void setExecution(ExecutionEntity execution)
-
getActivity
public ActivityImpl getActivity()
-
getProcessDefinition
public ProcessDefinitionEntity getProcessDefinition()
-
setActivity
public void setActivity(ActivityImpl activity)
-
getJobDeclaration
public EventSubscriptionJobDeclaration getJobDeclaration()
-
getId
public String getId()
Description copied from interface:EventSubscription
The unique identifier of the event subscription.- Specified by:
getId
in interfaceDbEntity
- Specified by:
getId
in interfaceEventSubscription
-
getRevision
public int getRevision()
- Specified by:
getRevision
in interfaceHasDbRevision
-
setRevision
public void setRevision(int revision)
- Specified by:
setRevision
in interfaceHasDbRevision
-
getRevisionNext
public int getRevisionNext()
- Specified by:
getRevisionNext
in interfaceHasDbRevision
-
isSubscriptionForEventType
public boolean isSubscriptionForEventType(EventType eventType)
-
getEventType
public String getEventType()
Description copied from interface:EventSubscription
The event subscriptions type. "message" identifies message event subscriptions, "signal" identifies signal event subscription, "compensation" identifies event subscriptions used for compensation events.- Specified by:
getEventType
in interfaceEventSubscription
-
setEventType
public void setEventType(String eventType)
-
getEventName
public String getEventName()
Description copied from interface:EventSubscription
The name of the event this subscription belongs to as defined in the process model.- Specified by:
getEventName
in interfaceEventSubscription
-
setEventName
public void setEventName(String eventName)
-
getExecutionId
public String getExecutionId()
Description copied from interface:EventSubscription
The execution that is subscribed on the referenced event.- Specified by:
getExecutionId
in interfaceEventSubscription
-
setExecutionId
public void setExecutionId(String executionId)
-
getProcessInstanceId
public String getProcessInstanceId()
Description copied from interface:EventSubscription
The process instance this subscription belongs to.- Specified by:
getProcessInstanceId
in interfaceEventSubscription
-
setProcessInstanceId
public void setProcessInstanceId(String processInstanceId)
-
getConfiguration
public String getConfiguration()
-
setConfiguration
public void setConfiguration(String configuration)
-
getActivityId
public String getActivityId()
Description copied from interface:EventSubscription
The identifier of the activity that this event subscription belongs to. This could for example be the id of a receive task.- Specified by:
getActivityId
in interfaceEventSubscription
-
setActivityId
public void setActivityId(String activityId)
-
getCreated
public Date getCreated()
Description copied from interface:EventSubscription
The time this event subscription was created.- Specified by:
getCreated
in interfaceEventSubscription
-
setCreated
public void setCreated(Date created)
-
getTenantId
public String getTenantId()
Description copied from interface:EventSubscription
The id of the tenant this event subscription belongs to. Can benull
if the subscription belongs to no single tenant.- Specified by:
getTenantId
in interfaceEventSubscription
-
setTenantId
public void setTenantId(String tenantId)
-
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.
-
-