| Modifier and Type | Class and Description | 
|---|---|
class  | 
BatchEntity  | 
class  | 
BatchStatisticsEntity  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
HistoricBatchEntity  | 
| 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)  | 
void | 
DbEntityManager.undoDelete(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)  | 
void | 
DbEntityManager.deletePreserveOrder(Class<? extends DbEntity> entityType,
                   String statement,
                   Object parameter)
Several delete operations added by this method will be executed preserving the order of method calls, no matter what entity type they refer to. 
 | 
protected DbBulkOperation | 
DbEntityManager.performBulkOperation(Class<? extends DbEntity> entityType,
                    String statement,
                    Object parameter,
                    DbOperationType operationType)  | 
protected DbBulkOperation | 
DbEntityManager.performBulkOperationPreserveOrder(Class<? extends DbEntity> entityType,
                                 String statement,
                                 Object parameter,
                                 DbOperationType operationType)  | 
void | 
DbEntityManager.update(Class<? extends DbEntity> entityType,
      String statement,
      Object parameter)  | 
void | 
DbEntityManager.updatePreserveOrder(Class<? extends DbEntity> entityType,
                   String statement,
                   Object parameter)
Several update operations added by this method will be executed preserving the order of method calls, no matter what entity type they refer to. 
 | 
| 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.MERGED object into the cache. | 
void | 
DbEntityCache.putPersistent(DbEntity e)
Put a  
DbEntityState.PERSISTENT object into the cache. | 
void | 
DbEntityCache.putTransient(DbEntity e)
Put a new,  
DbEntityState.TRANSIENT object 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)  | 
void | 
DbEntityCache.undoDelete(DbEntity dbEntity)  | 
| Modifier and Type | Field and Description | 
|---|---|
protected DbEntity | 
DbEntityOperation.entity
The entity the operation is performed on. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
protected Class<? extends DbEntity> | 
DbOperation.entityType
The 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)  | 
| Constructor and Description | 
|---|
DbBulkOperation(DbOperationType operationType,
               Class<? extends DbEntity> entityType,
               String statement,
               Object parameter)  | 
| 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  | 
class  | 
DecisionRequirementsDefinitionEntity  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
MigratingInstanceParseContext.ensureNoEntitiesAreLeft(String entityName,
                       Collection<? extends DbEntity> dbEntities,
                       MigratingProcessInstanceValidationReportImpl processInstanceReport)  | 
| 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 | 
|---|---|
List<Class<? extends DbEntity>> | 
TableDataManager.getEntities(String tableName)  | 
| 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 | Method and Description | 
|---|---|
static String | 
StringUtil.joinDbEntityIds(Collection<? extends DbEntity> dbEntities)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
LdapGroupEntity  | 
class  | 
LdapUserEntity  | 
Copyright © 2019. All rights reserved.