Uses of Class
org.camunda.bpm.engine.impl.history.event.HistoryEvent

Packages that use HistoryEvent
org.camunda.bpm.engine.impl.history.event   
org.camunda.bpm.engine.impl.history.handler   
org.camunda.bpm.engine.impl.history.parser   
org.camunda.bpm.engine.impl.history.producer   
org.camunda.bpm.engine.impl.history.transformer   
org.camunda.bpm.engine.impl.persistence.entity   
 

Uses of HistoryEvent in org.camunda.bpm.engine.impl.history.event
 

Subclasses of HistoryEvent in org.camunda.bpm.engine.impl.history.event
 class HistoricActivityInstanceEventEntity
          HistoryEvent implementation for events that happen in an activity.
 class HistoricCaseActivityInstanceEventEntity
          HistoryEvent implementation for events that happen in a case activity.
 class HistoricCaseInstanceEventEntity
           
 class HistoricDetailEventEntity
           
 class HistoricFormPropertyEventEntity
           
 class HistoricIncidentEventEntity
           
 class HistoricJobLogEvent
           
 class HistoricProcessInstanceEventEntity
          HistoryEvent signifying a top-level event in a process instance.
 class HistoricScopeInstanceEvent
           
 class HistoricTaskInstanceEventEntity
           
 class HistoricVariableUpdateEventEntity
           
 class UserOperationLogEntryEventEntity
           
 

Uses of HistoryEvent in org.camunda.bpm.engine.impl.history.handler
 

Methods in org.camunda.bpm.engine.impl.history.handler with parameters of type HistoryEvent
 void DbHistoryEventHandler.handleEvent(HistoryEvent historyEvent)
           
 void HistoryEventHandler.handleEvent(HistoryEvent historyEvent)
          Called by the process engine when an history event is fired.
protected  void DbHistoryEventHandler.insertOrUpdate(HistoryEvent historyEvent)
          general history event insert behavior
 

Method parameters in org.camunda.bpm.engine.impl.history.handler with type arguments of type HistoryEvent
 void DbHistoryEventHandler.handleEvents(List<HistoryEvent> historyEvents)
           
 void HistoryEventHandler.handleEvents(List<HistoryEvent> historyEvents)
          Called by the process engine when an history event is fired.
 

Uses of HistoryEvent in org.camunda.bpm.engine.impl.history.parser
 

Methods in org.camunda.bpm.engine.impl.history.parser that return HistoryEvent
protected  HistoryEvent ActivityInstanceStartListener.createHistoryEvent(DelegateExecution execution)
           
protected abstract  HistoryEvent HistoryExecutionListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ProcessInstanceEndListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ProcessInstanceStartListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ActivityInstanceEndListener.createHistoryEvent(DelegateExecution execution)
           
protected abstract  HistoryEvent HistoryTaskListener.createHistoryEvent(DelegateTask task, ExecutionEntity execution)
           
protected  HistoryEvent ActivityInstanceUpdateListener.createHistoryEvent(DelegateTask task, ExecutionEntity execution)
           
 

Uses of HistoryEvent in org.camunda.bpm.engine.impl.history.producer
 

Methods in org.camunda.bpm.engine.impl.history.producer with type parameters of type HistoryEvent
protected
<T extends HistoryEvent>
T
CacheAwareCmmnHistoryEventProducer.findInCache(Class<T> type, String id)
          find a cached entity by primary key
protected
<T extends HistoryEvent>
T
CacheAwareHistoryEventProducer.findInCache(Class<T> type, String id)
          find a cached entity by primary key
 

Methods in org.camunda.bpm.engine.impl.history.producer that return HistoryEvent
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceEndEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createActivityInstanceEndEvt(DelegateExecution execution)
          Creates the history event fired when an activity instances is ended.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceStartEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createActivityInstanceStartEvt(DelegateExecution execution)
          Creates the history event fired when an activity instances is started.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task)
           
 HistoryEvent HistoryEventProducer.createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task)
          Creates the history event fired when an activity instances is updated.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceCreateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceCreateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is created.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceEndEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceEndEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is ended.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceUpdateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceUpdateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is updated.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceCloseEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceCloseEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is closed.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceCreateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceCreateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is created.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceUpdateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceUpdateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is updated.
 HistoryEvent DefaultHistoryEventProducer.createFormPropertyUpdateEvt(ExecutionEntity execution, String propertyId, String propertyValue, String taskId)
           
 HistoryEvent HistoryEventProducer.createFormPropertyUpdateEvt(ExecutionEntity execution, String propertyId, String propertyValue, String taskId)
          Creates the history event fired when a form property is updated.
 HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentCreateEvt(Incident incident)
           
 HistoryEvent HistoryEventProducer.createHistoricIncidentCreateEvt(Incident incident)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentDeleteEvt(Incident incident)
           
 HistoryEvent HistoryEventProducer.createHistoricIncidentDeleteEvt(Incident incident)
           
protected  HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentEvt(Incident incident, HistoryEventTypes eventType)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentResolveEvt(Incident incident)
           
 HistoryEvent HistoryEventProducer.createHistoricIncidentResolveEvt(Incident incident)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogCreateEvt(Job job)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogCreateEvt(Job job)
          Creates the history event fired when a job has been created.
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogDeleteEvt(Job job)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogDeleteEvt(Job job)
          Creates the history event fired when the a job has been deleted.
protected  HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogEvt(Job job, HistoryEventType eventType)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogFailedEvt(Job job, Throwable exception)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogFailedEvt(Job job, Throwable exception)
          Creates the history event fired when the execution of a job failed.
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job)
          Creates the history event fired when the execution of a job was successful.
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableCreateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableCreateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is created.
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableDeleteEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableDeleteEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is deleted.
protected  HistoryEvent DefaultHistoryEventProducer.createHistoricVariableEvent(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope, HistoryEventType eventType)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableUpdateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableUpdateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is updated.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceEndEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createProcessInstanceEndEvt(DelegateExecution execution)
          Creates the history event fired when a process instances is ended.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceStartEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createProcessInstanceStartEvt(DelegateExecution execution)
          Creates the history event fired when an process instances is created.
 HistoryEvent DefaultHistoryEventProducer.createTaskInstanceCompleteEvt(DelegateTask task, String deleteReason)
           
 HistoryEvent HistoryEventProducer.createTaskInstanceCompleteEvt(DelegateTask task, String deleteReason)
          Creates the history event fired when a task instances is completed.
 HistoryEvent DefaultHistoryEventProducer.createTaskInstanceCreateEvt(DelegateTask task)
           
 HistoryEvent HistoryEventProducer.createTaskInstanceCreateEvt(DelegateTask task)
          Creates the history event fired when a task instances is created.
 HistoryEvent DefaultHistoryEventProducer.createTaskInstanceUpdateEvt(DelegateTask task)
           
 HistoryEvent HistoryEventProducer.createTaskInstanceUpdateEvt(DelegateTask task)
          Creates the history event fired when a task instances is updated.
 

Methods in org.camunda.bpm.engine.impl.history.producer that return types with arguments of type HistoryEvent
 List<HistoryEvent> DefaultHistoryEventProducer.createUserOperationLogEvents(UserOperationLogContext context)
           
 List<HistoryEvent> HistoryEventProducer.createUserOperationLogEvents(UserOperationLogContext context)
          Creates the history event fired whenever an operation has been performed by a user.
 

Methods in org.camunda.bpm.engine.impl.history.producer with parameters of type HistoryEvent
protected  void DefaultHistoryEventProducer.initSequenceCounter(ExecutionEntity execution, HistoryEvent event)
           
protected  void DefaultHistoryEventProducer.initSequenceCounter(JobEntity job, HistoryEvent event)
           
protected  void DefaultHistoryEventProducer.initSequenceCounter(long sequenceCounter, HistoryEvent event)
           
protected  void DefaultHistoryEventProducer.initSequenceCounter(VariableInstanceEntity variable, HistoryEvent event)
           
 

Uses of HistoryEvent in org.camunda.bpm.engine.impl.history.transformer
 

Methods in org.camunda.bpm.engine.impl.history.transformer that return HistoryEvent
protected  HistoryEvent CaseInstanceCloseListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseInstanceCreateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceEndListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseInstanceUpdateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected abstract  HistoryEvent HistoryCaseExecutionListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceCreateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceUpdateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
 

Uses of HistoryEvent in org.camunda.bpm.engine.impl.persistence.entity
 

Subclasses of HistoryEvent in org.camunda.bpm.engine.impl.persistence.entity
 class HistoricActivityInstanceEntity
           
 class HistoricCaseActivityInstanceEntity
           
 class HistoricCaseInstanceEntity
           
 class HistoricDetailVariableInstanceUpdateEntity
           
 class HistoricFormPropertyEntity
           
 class HistoricIncidentEntity
           
 class HistoricJobLogEventEntity
           
 class HistoricProcessInstanceEntity
           
 class HistoricTaskInstanceEntity
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type HistoryEvent
protected  void HistoricJobLogManager.handleEvent(HistoryEvent event)
           
 



Copyright © 2015 camunda services GmbH. All rights reserved.