Interface IntegrationContextEntity
-
- All Superinterfaces:
Entity
- All Known Implementing Classes:
IntegrationContextEntityImpl
public interface IntegrationContextEntity extends Entity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetCreatedDate()StringgetExecutionId()StringgetFlowNodeId()StringgetProcessDefinitionId()StringgetProcessInstanceId()voidsetCreatedDate(Date createdDate)voidsetExecutionId(String executionId)voidsetFlowNodeId(String flowNodeId)voidsetProcessDefinitionId(String processDefinitionId)voidsetProcessInstanceId(String processInstanceId)-
Methods inherited from interface org.activiti.engine.impl.persistence.entity.Entity
getId, getPersistentState, isDeleted, isInserted, isUpdated, setDeleted, setId, setInserted, setUpdated
-
-
-
-
Method Detail
-
getExecutionId
String getExecutionId()
-
setExecutionId
void setExecutionId(String executionId)
-
getProcessDefinitionId
String getProcessDefinitionId()
-
setProcessDefinitionId
void setProcessDefinitionId(String processDefinitionId)
-
getProcessInstanceId
String getProcessInstanceId()
-
setProcessInstanceId
void setProcessInstanceId(String processInstanceId)
-
getFlowNodeId
String getFlowNodeId()
-
setFlowNodeId
void setFlowNodeId(String flowNodeId)
-
getCreatedDate
Date getCreatedDate()
-
setCreatedDate
void setCreatedDate(Date createdDate)
-
-