org.camunda.bpm.engine.impl.history.event
Class HistoricCaseActivityInstanceEventEntity

java.lang.Object
  extended by org.camunda.bpm.engine.impl.history.event.HistoryEvent
      extended by org.camunda.bpm.engine.impl.history.event.HistoricScopeInstanceEvent
          extended by org.camunda.bpm.engine.impl.history.event.HistoricCaseActivityInstanceEventEntity
All Implemented Interfaces:
Serializable, DbEntity
Direct Known Subclasses:
HistoricCaseActivityInstanceEntity

public class HistoricCaseActivityInstanceEventEntity
extends HistoricScopeInstanceEvent

HistoryEvent implementation for events that happen in a case activity.

Author:
Sebastian Menski
See Also:
Serialized Form

Field Summary
protected  String calledCaseInstanceId
          the id of the called case in case of a case task
protected  String calledProcessInstanceId
          the id of the called process in case of a process task
protected  String caseActivityId
          the id of the case activity
protected  int caseActivityInstanceState
          the state of this case activity instance
protected  String caseActivityName
          the name of the case activity
protected  String caseActivityType
          the type of the case activity
protected  String parentCaseActivityInstanceId
          the id of the parent case activity instance
protected  boolean required
          the flag whether this case activity is required
protected  String taskId
          the id of the called task in case of a human task
protected  String tenantId
          id of the tenant which belongs to the case activity instance
 
Fields inherited from class org.camunda.bpm.engine.impl.history.event.HistoricScopeInstanceEvent
durationInMillis, endTime, startTime
 
Fields inherited from class org.camunda.bpm.engine.impl.history.event.HistoryEvent
ACTIVITY_EVENT_TYPE_END, ACTIVITY_EVENT_TYPE_START, ACTIVITY_EVENT_TYPE_UPDATE, caseDefinitionId, caseDefinitionKey, caseDefinitionName, caseExecutionId, caseInstanceId, eventType, executionId, FORM_PROPERTY_UPDATE, id, IDENTITY_LINK_ADD, IDENTITY_LINK_DELETE, INCIDENT_CREATE, INCIDENT_DELETE, INCIDENT_RESOLVE, processDefinitionId, processDefinitionKey, processDefinitionName, processInstanceId, sequenceCounter, TASK_EVENT_TYPE_COMPLETE, TASK_EVENT_TYPE_CREATE, TASK_EVENT_TYPE_DELETE, TASK_EVENT_TYPE_UPDATE, VARIABLE_EVENT_TYPE_CREATE, VARIABLE_EVENT_TYPE_DELETE, VARIABLE_EVENT_TYPE_UPDATE
 
Constructor Summary
HistoricCaseActivityInstanceEventEntity()
           
 
Method Summary
 String getCalledCaseInstanceId()
           
 String getCalledProcessInstanceId()
           
 String getCaseActivityId()
           
 int getCaseActivityInstanceState()
           
 String getCaseActivityName()
           
 String getCaseActivityType()
           
 String getCaseExecutionId()
           
 Date getCreateTime()
           
 String getParentCaseActivityInstanceId()
           
 String getTaskId()
           
 String getTenantId()
           
 boolean isActive()
           
 boolean isAvailable()
           
 boolean isCompleted()
           
 boolean isDisabled()
           
 boolean isEnabled()
           
 boolean isRequired()
           
 boolean isSuspended()
           
 boolean isTerminated()
           
 void setCalledCaseInstanceId(String calledCaseInstanceId)
           
 void setCalledProcessInstanceId(String calledProcessInstanceId)
           
 void setCaseActivityId(String caseActivityId)
           
 void setCaseActivityInstanceState(int caseActivityInstanceState)
           
 void setCaseActivityName(String caseActivityName)
           
 void setCaseActivityType(String caseActivityType)
           
 void setCreateTime(Date createTime)
           
 void setParentCaseActivityInstanceId(String parentCaseActivityInstanceId)
           
 void setRequired(boolean required)
           
 void setTaskId(String taskId)
           
 void setTenantId(String tenantId)
           
 String toString()
           
 
Methods inherited from class org.camunda.bpm.engine.impl.history.event.HistoricScopeInstanceEvent
getDurationInMillis, getDurationRaw, getEndTime, getStartTime, setDurationInMillis, setEndTime, setStartTime
 
Methods inherited from class org.camunda.bpm.engine.impl.history.event.HistoryEvent
getCaseDefinitionId, getCaseDefinitionKey, getCaseDefinitionName, getCaseInstanceId, getEventType, getExecutionId, getId, getPersistentState, getProcessDefinitionId, getProcessDefinitionKey, getProcessDefinitionName, getProcessInstanceId, getSequenceCounter, isEventOfType, setCaseDefinitionId, setCaseDefinitionKey, setCaseDefinitionName, setCaseExecutionId, setCaseInstanceId, setEventType, setExecutionId, setId, setProcessDefinitionId, setProcessDefinitionKey, setProcessDefinitionName, setProcessInstanceId, setSequenceCounter
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

caseActivityId

protected String caseActivityId
the id of the case activity


caseActivityName

protected String caseActivityName
the name of the case activity


caseActivityType

protected String caseActivityType
the type of the case activity


caseActivityInstanceState

protected int caseActivityInstanceState
the state of this case activity instance


parentCaseActivityInstanceId

protected String parentCaseActivityInstanceId
the id of the parent case activity instance


taskId

protected String taskId
the id of the called task in case of a human task


calledProcessInstanceId

protected String calledProcessInstanceId
the id of the called process in case of a process task


calledCaseInstanceId

protected String calledCaseInstanceId
the id of the called case in case of a case task


tenantId

protected String tenantId
id of the tenant which belongs to the case activity instance


required

protected boolean required
the flag whether this case activity is required

Constructor Detail

HistoricCaseActivityInstanceEventEntity

public HistoricCaseActivityInstanceEventEntity()
Method Detail

getCaseExecutionId

public String getCaseExecutionId()
Overrides:
getCaseExecutionId in class HistoryEvent

getCaseActivityId

public String getCaseActivityId()

setCaseActivityId

public void setCaseActivityId(String caseActivityId)

getCaseActivityName

public String getCaseActivityName()

setCaseActivityName

public void setCaseActivityName(String caseActivityName)

getCaseActivityType

public String getCaseActivityType()

setCaseActivityType

public void setCaseActivityType(String caseActivityType)

getCaseActivityInstanceState

public int getCaseActivityInstanceState()

setCaseActivityInstanceState

public void setCaseActivityInstanceState(int caseActivityInstanceState)

getParentCaseActivityInstanceId

public String getParentCaseActivityInstanceId()

setParentCaseActivityInstanceId

public void setParentCaseActivityInstanceId(String parentCaseActivityInstanceId)

getTaskId

public String getTaskId()

setTaskId

public void setTaskId(String taskId)

getCalledProcessInstanceId

public String getCalledProcessInstanceId()

setCalledProcessInstanceId

public void setCalledProcessInstanceId(String calledProcessInstanceId)

getCalledCaseInstanceId

public String getCalledCaseInstanceId()

setCalledCaseInstanceId

public void setCalledCaseInstanceId(String calledCaseInstanceId)

getTenantId

public String getTenantId()

setTenantId

public void setTenantId(String tenantId)

getCreateTime

public Date getCreateTime()

setCreateTime

public void setCreateTime(Date createTime)

isRequired

public boolean isRequired()

setRequired

public void setRequired(boolean required)

isAvailable

public boolean isAvailable()

isEnabled

public boolean isEnabled()

isDisabled

public boolean isDisabled()

isActive

public boolean isActive()

isSuspended

public boolean isSuspended()

isCompleted

public boolean isCompleted()

isTerminated

public boolean isTerminated()

toString

public String toString()
Overrides:
toString in class HistoryEvent


Copyright © 2016 camunda services GmbH. All rights reserved.