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 HistoricDecisionInputInstanceEntity
           
 class HistoricDecisionInstanceEntity
          History entry for an evaluated decision.
 class HistoricDecisionOutputInstanceEntity
           
 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 CompositeHistoryEventHandler.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 CompositeHistoryEventHandler.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 ProcessInstanceStartListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ProcessInstanceEndListener.createHistoryEvent(DelegateExecution execution)
           
protected abstract  HistoryEvent HistoryExecutionListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ActivityInstanceStartListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ActivityInstanceEndListener.createHistoryEvent(DelegateExecution execution)
           
protected  HistoryEvent ActivityInstanceUpdateListener.createHistoryEvent(DelegateTask task, ExecutionEntity execution)
           
protected abstract  HistoryEvent HistoryTaskListener.createHistoryEvent(DelegateTask task, ExecutionEntity execution)
           
protected  HistoryEvent HistoryDecisionTableListener.createHistoryEvent(org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent evaluationEvent)
           
 

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 HistoryEventProducer.createActivityInstanceEndEvt(DelegateExecution execution)
          Creates the history event fired when an activity instances is ended.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceEndEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createActivityInstanceStartEvt(DelegateExecution execution)
          Creates the history event fired when an activity instances is started.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceStartEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task)
          Creates the history event fired when an activity instances is updated.
 HistoryEvent DefaultHistoryEventProducer.createActivityInstanceUpdateEvt(DelegateExecution execution, DelegateTask task)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceCreateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is created.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceCreateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceEndEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is ended.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceEndEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseActivityInstanceUpdateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case activity instance is updated.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseActivityInstanceUpdateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceCloseEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is closed.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceCloseEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceCreateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is created.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceCreateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent CmmnHistoryEventProducer.createCaseInstanceUpdateEvt(DelegateCaseExecution caseExecution)
          Creates the history event fired when a case instance is updated.
 HistoryEvent DefaultCmmnHistoryEventProducer.createCaseInstanceUpdateEvt(DelegateCaseExecution caseExecution)
           
 HistoryEvent DefaultDmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateCaseExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent evaluationEvent)
           
 HistoryEvent DmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateCaseExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent decisionTableEvaluationEvent)
          Creates the history event fired when a decision is evaluated while execute a case instance.
 HistoryEvent DefaultDmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent evaluationEvent)
           
 HistoryEvent DmnHistoryEventProducer.createDecisionEvaluatedEvt(DelegateExecution execution, org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent decisionTableEvaluationEvent)
          Creates the history event fired when a decision is evaluated while execute a process instance.
 HistoryEvent DefaultDmnHistoryEventProducer.createDecisionEvaluatedEvt(org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent evaluationEvent)
           
 HistoryEvent DmnHistoryEventProducer.createDecisionEvaluatedEvt(org.camunda.bpm.dmn.engine.delegate.DmnDecisionTableEvaluationEvent decisionTableEvaluationEvent)
          Creates the history event fired when a decision is evaluated.
 HistoryEvent HistoryEventProducer.createFormPropertyUpdateEvt(ExecutionEntity execution, String propertyId, String propertyValue, String taskId)
          Creates the history event fired when a form property is updated.
 HistoryEvent DefaultHistoryEventProducer.createFormPropertyUpdateEvt(ExecutionEntity execution, String propertyId, String propertyValue, String taskId)
           
 HistoryEvent HistoryEventProducer.createHistoricIncidentCreateEvt(Incident incident)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentCreateEvt(Incident incident)
           
 HistoryEvent HistoryEventProducer.createHistoricIncidentDeleteEvt(Incident incident)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentDeleteEvt(Incident incident)
           
protected  HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentEvt(Incident incident, HistoryEventTypes eventType)
           
 HistoryEvent HistoryEventProducer.createHistoricIncidentResolveEvt(Incident incident)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricIncidentResolveEvt(Incident incident)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogCreateEvt(Job job)
          Creates the history event fired when a job has been created.
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogCreateEvt(Job job)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogDeleteEvt(Job job)
          Creates the history event fired when the a job has been deleted.
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogDeleteEvt(Job job)
           
protected  HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogEvt(Job job, HistoryEventType eventType)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogFailedEvt(Job job, Throwable exception)
          Creates the history event fired when the execution of a job failed.
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogFailedEvt(Job job, Throwable exception)
           
 HistoryEvent HistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job)
          Creates the history event fired when the execution of a job was successful.
 HistoryEvent DefaultHistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableCreateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is created.
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableCreateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableDeleteEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is deleted.
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableDeleteEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
protected  HistoryEvent DefaultHistoryEventProducer.createHistoricVariableEvent(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope, HistoryEventType eventType)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableUpdateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is updated.
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableUpdateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createProcessInstanceEndEvt(DelegateExecution execution)
          Creates the history event fired when a process instances is ended.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceEndEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createProcessInstanceStartEvt(DelegateExecution execution)
          Creates the history event fired when an process instances is created.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceStartEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createProcessInstanceUpdateEvt(DelegateExecution execution)
          Creates the history event fired when a process instance is updated.
 HistoryEvent DefaultHistoryEventProducer.createProcessInstanceUpdateEvt(DelegateExecution execution)
           
 HistoryEvent HistoryEventProducer.createTaskInstanceCompleteEvt(DelegateTask task, String deleteReason)
          Creates the history event fired when a task instances is completed.
 HistoryEvent DefaultHistoryEventProducer.createTaskInstanceCompleteEvt(DelegateTask task, String deleteReason)
           
 HistoryEvent HistoryEventProducer.createTaskInstanceCreateEvt(DelegateTask task)
          Creates the history event fired when a task instances is created.
 HistoryEvent DefaultHistoryEventProducer.createTaskInstanceCreateEvt(DelegateTask task)
           
 HistoryEvent HistoryEventProducer.createTaskInstanceUpdateEvt(DelegateTask task)
          Creates the history event fired when a task instances is updated.
 HistoryEvent DefaultHistoryEventProducer.createTaskInstanceUpdateEvt(DelegateTask task)
           
 

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

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 CaseInstanceUpdateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseInstanceCloseListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceCreateListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseActivityInstanceEndListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected abstract  HistoryEvent HistoryCaseExecutionListener.createHistoryEvent(DelegateCaseExecution caseExecution)
           
protected  HistoryEvent CaseInstanceCreateListener.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.