| Modifier and Type | Class and Description |
|---|---|
class |
VariableInstanceEntity |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Interface and Description |
|---|---|
interface |
AppDefinitionEntity |
interface |
AppDeploymentEntity |
interface |
AppResourceEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractAppEngineEntity |
class |
AbstractAppEngineNoRevisionEntity |
class |
AppDefinitionEntityImpl |
class |
AppDeploymentEntityImpl |
class |
AppResourceEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractAppDataManager<EntityImpl extends Entity> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BatchEntity |
interface |
BatchPartEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractBatchServiceEntity |
class |
BatchEntityImpl |
class |
BatchPartEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
protected List<Class<? extends Entity>> |
CmmnEngineConfigurator.getEntityDeletionOrder() |
protected List<Class<? extends Entity>> |
CmmnEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Interface and Description |
|---|---|
interface |
CaseDefinitionEntity |
interface |
CaseInstanceEntity |
interface |
CmmnDeploymentEntity |
interface |
CmmnResourceEntity |
interface |
EntityWithSentryPartInstances |
interface |
HistoricCaseInstanceEntity |
interface |
HistoricMilestoneInstanceEntity |
interface |
HistoricPlanItemInstanceEntity |
interface |
MilestoneInstanceEntity |
interface |
PlanItemInstanceEntity |
interface |
SentryPartInstanceEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractCmmnEngineEntity |
class |
AbstractCmmnEngineNoRevisionEntity |
class |
AbstractCmmnEngineVariableScopeEntity |
class |
CaseDefinitionEntityImpl |
class |
CaseInstanceEntityImpl |
class |
CmmnDeploymentEntityImpl |
class |
CmmnResourceEntityImpl |
class |
HistoricCaseInstanceEntityImpl |
class |
HistoricMilestoneInstanceEntityImpl |
class |
HistoricPlanItemInstanceEntityImpl |
class |
MilestoneInstanceEntityImpl |
class |
PlanItemInstanceEntityImpl |
class |
SentryPartInstanceEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractCmmnDataManager<EntityImpl extends Entity> |
| Modifier and Type | Method and Description |
|---|---|
protected abstract List<Class<? extends Entity>> |
AbstractEngineConfigurator.getEntityDeletionOrder() |
protected abstract List<Class<? extends Entity>> |
AbstractEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
AbstractEngineConfiguration.defaultInitDbSqlSessionFactoryEntitySettings(List<Class<? extends Entity>> insertOrder,
List<Class<? extends Entity>> deleteOrder) |
protected void |
AbstractEngineConfiguration.defaultInitDbSqlSessionFactoryEntitySettings(List<Class<? extends Entity>> insertOrder,
List<Class<? extends Entity>> deleteOrder) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDataManager<EntityImpl extends Entity> |
interface |
SingleCachedEntityMatcher<EntityImpl extends Entity>
Interface to express a condition whether or not one specific cached entity should be used in the return result of a query.
|
| Modifier and Type | Field and Description |
|---|---|
protected Map<Class<? extends Entity>,List<BulkDeleteOperation>> |
DbSqlSession.bulkDeleteOperations |
protected Set<Class<? extends Entity>> |
DbSqlSessionFactory.bulkInserteableEntityClasses |
protected Map<Class<? extends Entity>,Map<String,Entity>> |
DbSqlSession.deletedObjects |
protected Map<Class<? extends Entity>,Map<String,Entity>> |
DbSqlSession.deletedObjects |
protected List<Class<? extends Entity>> |
DbSqlSessionFactory.deletionOrder |
protected Map<Class<? extends Entity>,Map<String,Entity>> |
DbSqlSession.insertedObjects |
protected Map<Class<? extends Entity>,Map<String,Entity>> |
DbSqlSession.insertedObjects |
protected List<Class<? extends Entity>> |
DbSqlSessionFactory.insertionOrder |
protected List<Entity> |
DbSqlSession.updatedObjects |
| Modifier and Type | Method and Description |
|---|---|
<T extends Entity> |
DbSqlSession.selectById(Class<T> entityClass,
String id) |
<T extends Entity> |
DbSqlSession.selectById(Class<T> entityClass,
String id,
boolean useCache) |
| Modifier and Type | Method and Description |
|---|---|
protected Entity |
DbSqlSession.cacheLoadOrStore(Entity entity,
Object parameter)
Returns the object in the cache.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Class<? extends Entity>> |
DbSqlSessionFactory.getBulkInserteableEntityClasses() |
List<Class<? extends Entity>> |
DbSqlSessionFactory.getDeletionOrder() |
List<Class<? extends Entity>> |
DbSqlSessionFactory.getInsertionOrder() |
| Modifier and Type | Method and Description |
|---|---|
protected Entity |
DbSqlSession.cacheLoadOrStore(Entity entity,
Object parameter)
Returns the object in the cache.
|
void |
DbSqlSession.delete(Entity entity) |
protected void |
DbSqlSession.flushRegularInsert(Entity entity,
Class<? extends Entity> clazz) |
String |
DbSqlSessionFactory.getInsertStatement(Entity object) |
String |
DbSqlSessionFactory.getUpdateStatement(Entity object) |
protected void |
DbSqlSession.incrementRevision(Entity insertedObject) |
void |
DbSqlSession.insert(Entity entity,
IdGenerator idGenerator) |
boolean |
DbSqlSession.isEntityInserted(Entity entity) |
boolean |
DbSqlSession.isEntityToBeDeleted(Entity entity) |
void |
DbSqlSession.update(Entity entity) |
| Modifier and Type | Method and Description |
|---|---|
void |
DbSqlSession.delete(String statement,
Object parameter,
Class<? extends Entity> entityClass)
Executes a
BulkDeleteOperation, with the sql in the statement parameter. |
void |
BulkDeleteOperation.execute(org.apache.ibatis.session.SqlSession sqlSession,
Class<? extends Entity> clazz) |
protected void |
DbSqlSession.flushBulkDeletes(Class<? extends Entity> entityClass,
List<BulkDeleteOperation> deleteOperations) |
protected void |
DbSqlSession.flushBulkInsert(Collection<Entity> entities,
Class<? extends Entity> clazz) |
protected void |
DbSqlSession.flushBulkInsert(Collection<Entity> entities,
Class<? extends Entity> clazz) |
protected void |
DbSqlSession.flushDeleteEntities(Class<? extends Entity> entityClass,
Collection<Entity> entitiesToDelete) |
protected void |
DbSqlSession.flushDeleteEntities(Class<? extends Entity> entityClass,
Collection<Entity> entitiesToDelete) |
protected void |
DbSqlSession.flushInsertEntities(Class<? extends Entity> entityClass,
Collection<Entity> entitiesToInsert) |
protected void |
DbSqlSession.flushInsertEntities(Class<? extends Entity> entityClass,
Collection<Entity> entitiesToInsert) |
protected void |
DbSqlSession.flushRegularInsert(Entity entity,
Class<? extends Entity> clazz) |
String |
DbSqlSessionFactory.getInsertStatement(Class<? extends Entity> clazz) |
Boolean |
DbSqlSessionFactory.isBulkInsertable(Class<? extends Entity> entityClass) |
void |
DbSqlSessionFactory.setBulkInserteableEntityClasses(Set<Class<? extends Entity>> bulkInserteableEntityClasses) |
void |
DbSqlSessionFactory.setDeletionOrder(List<Class<? extends Entity>> deletionOrder) |
void |
DbSqlSessionFactory.setInsertionOrder(List<Class<? extends Entity>> insertionOrder) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
CachedEntityMatcher<EntityImpl extends Entity>
Interface to express a condition whether or not a cached entity should be used in the return result of a query.
|
class |
CachedEntityMatcherAdapter<EntityImpl extends Entity> |
| Modifier and Type | Field and Description |
|---|---|
protected Entity |
CachedEntity.entity
The actual
Entity instance. |
| Modifier and Type | Method and Description |
|---|---|
Entity |
CachedEntity.getEntity() |
| Modifier and Type | Method and Description |
|---|---|
CachedEntity |
EntityCacheImpl.put(Entity entity,
boolean storeState) |
CachedEntity |
EntityCache.put(Entity entity,
boolean storeState)
Adds the gives
Entity to the cache. |
void |
CachedEntity.setEntity(Entity entity) |
| Constructor and Description |
|---|
CachedEntity(Entity entity,
boolean storeState) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEngineEntityManager<T extends AbstractEngineConfiguration,EntityImpl extends Entity,DM extends DataManager<EntityImpl>> |
class |
AbstractEntityManager<EntityImpl extends Entity,DM extends DataManager<EntityImpl>> |
class |
AbstractServiceEngineEntityManager<T extends AbstractServiceConfiguration,EntityImpl extends Entity,DM extends DataManager<EntityImpl>> |
interface |
EntityManager<EntityImpl extends Entity> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ByteArrayEntity |
interface |
PropertyEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEntity
Abstract superclass for the common properties of all
Entity implementations. |
class |
AbstractEntityNoRevision
Abstract superclass for the common properties of all
Entity implementations. |
class |
ByteArrayEntityImpl |
class |
PropertyEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
protected FlowableEntityEvent |
AbstractEntityManager.createEntityEvent(FlowableEngineEventType eventType,
Entity entity) |
protected void |
AbstractEntityManager.fireEntityDeletedEvent(Entity entity) |
protected void |
AbstractEntityManager.fireEntityInsertedEvent(Entity entity) |
protected void |
AbstractEntityManager.fireEntityUpdatedEvent(Entity entity) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DataManager<EntityImpl extends Entity> |
| Modifier and Type | Method and Description |
|---|---|
protected List<Class<? extends Entity>> |
ContentEngineConfigurator.getEntityDeletionOrder() |
protected List<Class<? extends Entity>> |
ContentEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ContentItemEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractContentEngineNoRevisionEntity |
class |
ContentItemEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractContentDataManager<EntityImpl extends Entity> |
| Modifier and Type | Method and Description |
|---|---|
protected List<Class<? extends Entity>> |
DmnEngineConfigurator.getEntityDeletionOrder() |
protected List<Class<? extends Entity>> |
DmnEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DecisionEntity |
interface |
DmnDeploymentEntity |
interface |
DmnResourceEntity |
interface |
HistoricDecisionExecutionEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDmnEngineNoRevisionEntity |
class |
DecisionEntityImpl |
class |
DmnDeploymentEntityImpl |
class |
DmnResourceEntityImpl |
class |
HistoricDecisionExecutionEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDmnDataManager<EntityImpl extends Entity> |
| Modifier and Type | Method and Description |
|---|---|
protected List<Class<? extends Entity>> |
ProcessEngineConfigurator.getEntityDeletionOrder() |
protected List<Class<? extends Entity>> |
ProcessEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractProcessEngineEntityManager<EntityImpl extends Entity,DM extends DataManager<EntityImpl>> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ActivityInstanceEntity |
interface |
AttachmentEntity |
interface |
CommentEntity |
interface |
DeploymentEntity |
interface |
EventLogEntryEntity
An event log entry can only be inserted (and maybe deleted).
|
interface |
ExecutionEntity |
interface |
HistoricActivityInstanceEntity |
interface |
HistoricDetailAssignmentEntity |
interface |
HistoricDetailEntity |
interface |
HistoricDetailVariableInstanceUpdateEntity |
interface |
HistoricFormPropertyEntity |
interface |
HistoricProcessInstanceEntity |
interface |
HistoricScopeInstanceEntity |
interface |
ModelEntity |
interface |
ProcessDefinitionEntity |
interface |
ProcessDefinitionInfoEntity |
interface |
ResourceEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractBpmnEngineEntity |
class |
AbstractBpmnEngineNoRevisionEntity |
class |
AbstractBpmnEngineVariableScopeEntity |
class |
ActivityInstanceEntityImpl |
class |
AttachmentEntityImpl |
class |
CommentEntityImpl |
class |
DeploymentEntityImpl |
class |
EventLogEntryEntityImpl
An event log entry can only be inserted (and maybe deleted).
|
class |
ExecutionEntityImpl |
class |
HistoricActivityInstanceEntityImpl |
class |
HistoricDetailAssignmentEntityImpl |
class |
HistoricDetailEntityImpl |
class |
HistoricDetailVariableInstanceUpdateEntityImpl |
class |
HistoricFormPropertyEntityImpl |
class |
HistoricProcessInstanceEntityImpl |
class |
HistoricScopeInstanceEntityImpl |
class |
ModelEntityImpl |
class |
ProcessDefinitionEntityImpl |
class |
ProcessDefinitionInfoEntityImpl |
class |
ResourceEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
protected FlowableEntityEvent |
AbstractProcessEngineEntityManager.createEntityEvent(FlowableEngineEventType eventType,
Entity entity) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractProcessDataManager<EntityImpl extends Entity> |
| Modifier and Type | Method and Description |
|---|---|
<T extends Entity> |
ProfilingDbSqlSession.selectById(Class<T> entityClass,
String id,
boolean useCache) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
ProfilingDbSqlSession.flushRegularInsert(Entity entity,
Class<? extends Entity> clazz) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
ProfilingDbSqlSession.flushBulkDeletes(Class<? extends Entity> entityClass,
List<BulkDeleteOperation> deleteOperations) |
protected void |
ProfilingDbSqlSession.flushBulkInsert(Collection<Entity> entities,
Class<? extends Entity> clazz) |
protected void |
ProfilingDbSqlSession.flushBulkInsert(Collection<Entity> entities,
Class<? extends Entity> clazz) |
protected void |
ProfilingDbSqlSession.flushDeleteEntities(Class<? extends Entity> entityClass,
Collection<Entity> entitiesToDelete) |
protected void |
ProfilingDbSqlSession.flushDeleteEntities(Class<? extends Entity> entityClass,
Collection<Entity> entitiesToDelete) |
protected void |
ProfilingDbSqlSession.flushRegularInsert(Entity entity,
Class<? extends Entity> clazz) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
EntityLinkEntity |
interface |
HistoricEntityLinkEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEntityLinkServiceNoRevisionEntity |
class |
EntityLinkEntityImpl |
class |
HistoricEntityLinkEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
EntityLinksWithSameRootScopeForScopeIdAndScopeTypeMatcher<EntityImpl extends Entity & EntityLinkInfo> |
| Modifier and Type | Method and Description |
|---|---|
protected List<Class<? extends Entity>> |
EventRegistryEngineConfigurator.getEntityDeletionOrder() |
protected List<Class<? extends Entity>> |
EventRegistryEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ChannelDefinitionEntity |
interface |
EventDefinitionEntity |
interface |
EventDeploymentEntity |
interface |
EventResourceEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventRegistryNoRevisionEntity |
class |
ChannelDefinitionEntityImpl |
class |
EventDefinitionEntityImpl |
class |
EventDeploymentEntityImpl |
class |
EventResourceEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventDataManager<EntityImpl extends Entity> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
CompensateEventSubscriptionEntity |
interface |
EventSubscriptionEntity |
interface |
GenericEventSubscriptionEntity |
interface |
MessageEventSubscriptionEntity |
interface |
SignalEventSubscriptionEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventSubscriptionEntity |
class |
CompensateEventSubscriptionEntityImpl |
class |
EventSubscriptionEntityImpl |
class |
GenericEventSubscriptionEntityImpl |
class |
MessageEventSubscriptionEntityImpl |
class |
SignalEventSubscriptionEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventSubscriptionDataManager<EntityImpl extends Entity> |
| Modifier and Type | Method and Description |
|---|---|
protected List<Class<? extends Entity>> |
FormEngineConfigurator.getEntityDeletionOrder() |
protected List<Class<? extends Entity>> |
FormEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Interface and Description |
|---|---|
interface |
FormDefinitionEntity |
interface |
FormDeploymentEntity |
interface |
FormInstanceEntity |
interface |
FormResourceEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractFormEngineNoRevisionEntity |
class |
FormDefinitionEntityImpl |
class |
FormDeploymentEntityImpl |
class |
FormInstanceEntityImpl |
class |
FormResourceEntityImpl |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractFormDataManager<EntityImpl extends Entity> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
HistoricIdentityLinkEntity |
interface |
IdentityLinkEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIdentityLinkServiceNoRevisionEntity |
class |
HistoricIdentityLinkEntityImpl |
class |
IdentityLinkEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
protected List<Class<? extends Entity>> |
IdmEngineConfigurator.getEntityDeletionOrder() |
protected List<Class<? extends Entity>> |
IdmEngineConfigurator.getEntityInsertionOrder() |
| Modifier and Type | Field and Description |
|---|---|
static List<Class<? extends Entity>> |
EntityDependencyOrder.DELETE_ORDER |
static Map<Class<? extends Entity>,String> |
EntityToTableMap.entityToTableNameMap |
static List<Class<? extends Entity>> |
EntityDependencyOrder.INSERT_ORDER |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIdmEngineEntityManager<EntityImpl extends Entity,DM extends DataManager<EntityImpl>> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
GroupEntity |
interface |
IdentityInfoEntity |
interface |
IdmByteArrayEntity |
interface |
IdmPropertyEntity |
interface |
MembershipEntity |
interface |
PrivilegeEntity |
interface |
PrivilegeMappingEntity |
interface |
TokenEntity |
interface |
UserEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIdmEngineEntity |
class |
AbstractIdmEngineNoRevisionEntity |
class |
GroupEntityImpl |
class |
IdentityInfoEntityImpl |
class |
IdmByteArrayEntityImpl |
class |
IdmPropertyEntityImpl |
class |
MembershipEntityImpl |
class |
PrivilegeEntityImpl |
class |
PrivilegeMappingEntityImpl |
class |
TokenEntityImpl |
class |
UserEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
protected FlowableEntityEvent |
AbstractIdmEngineEntityManager.createEntityEvent(FlowableEngineEventType eventType,
Entity entity) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIdmDataManager<EntityImpl extends Entity> |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractJobServiceEngineEntityManager<EntityImpl extends Entity,DM extends DataManager<EntityImpl>> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
AbstractJobEntity |
interface |
AbstractRuntimeJobEntity |
interface |
DeadLetterJobEntity
Suspended jobs are stored separately to increase the normal job query performance
|
interface |
ExternalWorkerJobEntity
Represents an external job.
|
interface |
HistoryJobEntity |
interface |
JobEntity
Represents an async job: a piece of logic that needs to be executed asynchronously.
|
interface |
JobInfoEntity |
interface |
SuspendedJobEntity
Suspended jobs are stored separately to increase the normal job query performance
|
interface |
TimerJobEntity
Stub of the common parts of a timer job.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractJobEntityImpl
Abstract job entity class.
|
class |
AbstractJobServiceEntity |
class |
DeadLetterJobEntityImpl
DeadLetterJob entity, necessary for persistence.
|
class |
ExternalWorkerJobEntityImpl |
class |
HistoryJobEntityImpl
History Job entity.
|
class |
JobEntityImpl
Job entity.
|
class |
SuspendedJobEntityImpl
TimerJob entity, necessary for persistence.
|
class |
TimerJobEntityImpl
TimerJob entity, necessary for persistence.
|
| Modifier and Type | Method and Description |
|---|---|
protected FlowableEntityEvent |
AbstractJobServiceEngineEntityManager.createEntityEvent(FlowableEngineEventType eventType,
Entity entity) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
SingleCachedEntityMatcher<EntityImpl extends Entity>
Interface to express a condition whether or not one specific cached entity should be used in the return result of a query.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractTaskServiceEntityManager<EntityImpl extends Entity,DM extends DataManager<EntityImpl>> |
| Modifier and Type | Interface and Description |
|---|---|
interface |
HistoricTaskInstanceEntity |
interface |
HistoricTaskLogEntryEntity |
interface |
TaskEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractTaskServiceEntity |
class |
AbstractTaskServiceVariableScopeEntity |
class |
HistoricTaskInstanceEntityImpl |
class |
HistoricTaskLogEntryEntityImpl |
class |
TaskEntityImpl |
| Modifier and Type | Method and Description |
|---|---|
protected FlowableEntityEvent |
AbstractTaskServiceEntityManager.createEntityEvent(FlowableEngineEventType eventType,
Entity entity) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
HistoricVariableInstanceEntity |
interface |
VariableInstanceEntity |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractVariableServiceEntity |
class |
HistoricVariableInstanceEntityImpl |
class |
VariableInstanceEntityImpl |
class |
VariableScopeImpl |
Copyright © 2023 Flowable. All rights reserved.