| Modifier and Type | Method and Description | 
|---|---|
| Class<? extends DbEntity> | AcquireJobsCmd. getEntityType() | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CaseDefinitionEntity | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CaseExecutionEntity | 
| class  | CaseSentryPartEntity | 
| Modifier and Type | Method and Description | 
|---|---|
| <T extends DbEntity>  | EnginePersistenceLogger. entityCacheLookupException(Class<T> type,
                          String id,
                          Class<? extends DbEntity> entity,
                          Throwable cause) | 
| <T extends DbEntity>  | PersistenceSession. selectById(Class<T> type,
          String id) | 
| Modifier and Type | Method and Description | 
|---|---|
| ProcessEngineException | EnginePersistenceLogger. mergeDbEntityException(DbEntity entity) | 
| void | EntityLoadListener. onEntityLoaded(DbEntity entity) | 
| Modifier and Type | Method and Description | 
|---|---|
| ProcessEngineException | EnginePersistenceLogger. alreadyMarkedEntityInEntityCacheException(String id,
                                         Class<? extends DbEntity> entityClass,
                                         DbEntityState state) | 
| ProcessEngineException | EnginePersistenceLogger. entityCacheDuplicateEntryException(String currentState,
                                  String id,
                                  Class<? extends DbEntity> entityClass,
                                  DbEntityState foundState) | 
| <T extends DbEntity>  | EnginePersistenceLogger. entityCacheLookupException(Class<T> type,
                          String id,
                          Class<? extends DbEntity> entity,
                          Throwable cause) | 
| Modifier and Type | Method and Description | 
|---|---|
| <T extends DbEntity>  | DbEntityManager. getCachedEntitiesByType(Class<T> type) | 
| <T extends DbEntity>  | DbEntityManager. getCachedEntity(Class<T> type,
               String id) | 
| <T extends DbEntity>  | DbEntityManager. pruneDeletedEntities(List<T> listToPrune) | 
| <T extends DbEntity>  | DbEntityManager. selectById(Class<T> entityClass,
          String id) | 
| Modifier and Type | Method and Description | 
|---|---|
| protected DbEntity | DbEntityManager. cacheFilter(DbEntity persistentObject)returns the object in the cache. | 
| Modifier and Type | Method and Description | 
|---|---|
| Class<? extends DbEntity> | OptimisticLockingListener. getEntityType()The type of the entity for which this listener should be notified. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected DbEntity | DbEntityManager. cacheFilter(DbEntity persistentObject)returns the object in the cache. | 
| boolean | DbEntityManager. contains(DbEntity dbEntity) | 
| void | DbEntityManager. delete(DbEntity dbEntity) | 
| protected void | DbEntityManager. ensureHasId(DbEntity dbEntity) | 
| void | DbEntityManager. flushEntity(DbEntity entity) | 
| void | DbEntityManager. forceUpdate(DbEntity entity) | 
| void | DbEntityManager. insert(DbEntity dbEntity) | 
| boolean | DbEntityManager. isDeleted(DbEntity object) | 
| boolean | DbEntityManager. isDirty(DbEntity dbEntity) | 
| void | DbEntityManager. merge(DbEntity dbEntity) | 
| void | DbEntityManager. onEntityLoaded(DbEntity entity) | 
| protected void | DbEntityManager. validateId(DbEntity dbEntity) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | DbEntityManager. delete(Class<? extends DbEntity> entityType,
      String statement,
      Object parameter) | 
| protected DbBulkOperation | DbEntityManager. performBulkOperation(Class<? extends DbEntity> entityType,
                    String statement,
                    Object parameter,
                    DbOperationType operationType) | 
| void | DbEntityManager. update(Class<? extends DbEntity> entityType,
      String statement,
      Object parameter) | 
| Modifier and Type | Field and Description | 
|---|---|
| protected DbEntity | CachedDbEntity. dbEntity | 
| Modifier and Type | Method and Description | 
|---|---|
| <T extends DbEntity>  | DbEntityCache. get(Class<T> type,
   String id)get an object from the cache | 
| <T extends DbEntity>  | DbEntityCache. getEntitiesByType(Class<T> type) | 
| Modifier and Type | Method and Description | 
|---|---|
| DbEntity | CachedDbEntity. getEntity() | 
| Modifier and Type | Method and Description | 
|---|---|
| Class<? extends DbEntity> | CachedDbEntity. getEntityType() | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | DbEntityCache. contains(DbEntity dbEntity)Allows checking whether the provided entity is present in the cache | 
| CachedDbEntity | DbEntityCache. getCachedEntity(DbEntity dbEntity)Looks up an entity in the cache. | 
| boolean | DbEntityCache. isDeleted(DbEntity dbEntity)Allows checking whether the provided entity is present in the cache
 and is marked to be deleted. | 
| boolean | DbEntityCache. isPersistent(DbEntity dbEntity)Allows checking whether the provided entity is present in the cache
 and is  DbEntityState.PERSISTENT. | 
| boolean | DbEntityCache. isTransient(DbEntity dbEntity)Allows checking whether the provided entity is present in the cache
 and is  DbEntityState.TRANSIENT. | 
| void | DbEntityCache. putMerged(DbEntity e)Put a  DbEntityState.MERGEDobject into the cache. | 
| void | DbEntityCache. putPersistent(DbEntity e)Put a  DbEntityState.PERSISTENTobject into the cache. | 
| void | DbEntityCache. putTransient(DbEntity e)Put a new,  DbEntityState.TRANSIENTobject into the cache. | 
| boolean | DbEntityCache. remove(DbEntity e)Remove an entity from the cache | 
| void | DbEntityCache. setDeleted(DbEntity dbEntity)Sets an object to a deleted state. | 
| void | CachedDbEntity. setEntity(DbEntity dbEntity) | 
| Modifier and Type | Field and Description | 
|---|---|
| protected DbEntity | DbEntityOperation. entityThe entity the operation is performed on. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected Class<? extends DbEntity> | DbOperation. entityTypeThe type of the DbEntity this operation is executed on. | 
| Modifier and Type | Method and Description | 
|---|---|
| DbEntity | DbEntityOperation. getEntity() | 
| Modifier and Type | Method and Description | 
|---|---|
| Class<? extends DbEntity> | DbOperation. getEntityType() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | DbEntityOperation. setEntity(DbEntity dbEntity) | 
| Modifier and Type | Method and Description | 
|---|---|
| protected SortedSet<DbEntityOperation> | DbOperationManager. getDeletesByType(Class<? extends DbEntity> type,
                boolean create) | 
| protected SortedSet<DbEntityOperation> | DbOperationManager. getInsertsForType(Class<? extends DbEntity> type,
                 boolean create) | 
| protected SortedSet<DbEntityOperation> | DbOperationManager. getUpdatesByType(Class<? extends DbEntity> type,
                boolean create) | 
| void | DbOperation. setEntityType(Class<? extends DbEntity> entityType) | 
| Modifier and Type | Method and Description | 
|---|---|
| <T extends DbEntity>  | DbSqlSession. selectById(Class<T> type,
          String id) | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | DbSqlSession. entityDeleted(DbEntity entity) | 
| protected void | DbSqlSession. entityInserted(DbEntity entity) | 
| protected void | DbSqlSession. entityUpdated(DbEntity entity) | 
| String | DbSqlSessionFactory. getInsertStatement(DbEntity object) | 
| String | DbSqlSessionFactory. getUpdateStatement(DbEntity object) | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | DecisionDefinitionEntity | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | HistoricActivityInstanceEventEntityHistoryEventimplementation for events that happen in an activity. | 
| class  | HistoricCaseActivityInstanceEventEntityHistoryEventimplementation for events that happen in a case activity. | 
| class  | HistoricCaseInstanceEventEntity | 
| class  | HistoricDecisionInputInstanceEntity | 
| class  | HistoricDecisionInstanceEntityHistory entry for an evaluated decision. | 
| class  | HistoricDecisionOutputInstanceEntity | 
| class  | HistoricDetailEventEntity | 
| class  | HistoricFormPropertyEventEntity | 
| class  | HistoricIncidentEventEntity | 
| class  | HistoricJobLogEvent | 
| class  | HistoricProcessInstanceEventEntityHistoryEventsignifying a top-level event in a process instance. | 
| class  | HistoricScopeInstanceEvent | 
| class  | HistoricTaskInstanceEventEntity | 
| class  | HistoricVariableUpdateEventEntity | 
| class  | HistoryEventThe base class for all history events. | 
| class  | UserOperationLogEntryEventEntity | 
| Modifier and Type | Method and Description | 
|---|---|
| void | AbstractManager. delete(DbEntity dbEntity) | 
| void | AbstractManager. insert(DbEntity dbEntity) | 
| Modifier and Type | Field and Description | 
|---|---|
| static Map<Class<? extends DbEntity>,String> | TableDataManager. persistentObjectToTableNameMap | 
| Modifier and Type | Method and Description | 
|---|---|
| void | AuthorizationManager. delete(DbEntity authorization) | 
| void | CommentManager. delete(DbEntity dbEntity) | 
| void | AuthorizationManager. insert(DbEntity authorization) | 
| void | CommentManager. insert(DbEntity dbEntity) | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | LdapGroupEntity | 
| class  | LdapUserEntity | 
Copyright © 2018. All rights reserved.