Uses of Interface
org.camunda.bpm.engine.impl.db.DbEntity
-
-
Uses of DbEntity in org.camunda.bpm.engine.impl.batch
Classes in org.camunda.bpm.engine.impl.batch that implement DbEntity Modifier and Type Class Description class
BatchEntity
class
BatchStatisticsEntity
-
Uses of DbEntity in org.camunda.bpm.engine.impl.batch.history
Classes in org.camunda.bpm.engine.impl.batch.history that implement DbEntity Modifier and Type Class Description class
HistoricBatchEntity
-
Uses of DbEntity in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type DbEntity Modifier and Type Method Description Class<? extends DbEntity>
AcquireJobsCmd. getEntityType()
-
Uses of DbEntity in org.camunda.bpm.engine.impl.cmmn.entity.repository
Classes in org.camunda.bpm.engine.impl.cmmn.entity.repository that implement DbEntity Modifier and Type Class Description class
CaseDefinitionEntity
-
Uses of DbEntity in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement DbEntity Modifier and Type Class Description class
CaseExecutionEntity
class
CaseSentryPartEntity
-
Uses of DbEntity in org.camunda.bpm.engine.impl.db
Methods in org.camunda.bpm.engine.impl.db with type parameters of type DbEntity Modifier and Type Method Description <T extends DbEntity>
ProcessEngineExceptionEnginePersistenceLogger. entityCacheLookupException(Class<T> type, String id, Class<? extends DbEntity> entity, Throwable cause)
<T extends DbEntity>
TPersistenceSession. selectById(Class<T> type, String id)
Methods in org.camunda.bpm.engine.impl.db with parameters of type DbEntity Modifier and Type Method Description ProcessEngineException
EnginePersistenceLogger. mergeDbEntityException(DbEntity entity)
void
EntityLoadListener. onEntityLoaded(DbEntity entity)
Method parameters in org.camunda.bpm.engine.impl.db with type arguments of type DbEntity Modifier and Type Method 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)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.db.entitymanager
Methods in org.camunda.bpm.engine.impl.db.entitymanager with type parameters of type DbEntity Modifier and Type Method Description <T extends DbEntity>
List<T>DbEntityManager. getCachedEntitiesByType(Class<T> type)
<T extends DbEntity>
TDbEntityManager. getCachedEntity(Class<T> type, String id)
<T extends DbEntity>
List<T>DbEntityManager. pruneDeletedEntities(List<T> listToPrune)
<T extends DbEntity>
TDbEntityManager. selectById(Class<T> entityClass, String id)
Methods in org.camunda.bpm.engine.impl.db.entitymanager that return DbEntity Modifier and Type Method Description protected DbEntity
DbEntityManager. cacheFilter(DbEntity persistentObject)
returns the object in the cache.Methods in org.camunda.bpm.engine.impl.db.entitymanager that return types with arguments of type DbEntity Modifier and Type Method Description Class<? extends DbEntity>
OptimisticLockingListener. getEntityType()
The type of the entity for which this listener should be notified.Methods in org.camunda.bpm.engine.impl.db.entitymanager with parameters of type DbEntity Modifier and Type Method 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)
protected boolean
DbEntityManager. isHistoricByteArray(DbEntity dbEntity)
void
DbEntityManager. merge(DbEntity dbEntity)
void
DbEntityManager. onEntityLoaded(DbEntity entity)
void
DbEntityManager. undoDelete(DbEntity entity)
protected void
DbEntityManager. validateId(DbEntity dbEntity)
Method parameters in org.camunda.bpm.engine.impl.db.entitymanager with type arguments of type DbEntity Modifier and Type Method Description void
DbEntityManager. delete(Class<? extends DbEntity> entityType, String statement, Object parameter)
DbBulkOperation
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. -
Uses of DbEntity in org.camunda.bpm.engine.impl.db.entitymanager.cache
Fields in org.camunda.bpm.engine.impl.db.entitymanager.cache declared as DbEntity Modifier and Type Field Description protected DbEntity
CachedDbEntity. dbEntity
Methods in org.camunda.bpm.engine.impl.db.entitymanager.cache with type parameters of type DbEntity Modifier and Type Method Description <T extends DbEntity>
TDbEntityCache. get(Class<T> type, String id)
get an object from the cache<T extends DbEntity>
List<T>DbEntityCache. getEntitiesByType(Class<T> type)
Methods in org.camunda.bpm.engine.impl.db.entitymanager.cache that return DbEntity Modifier and Type Method Description DbEntity
CachedDbEntity. getEntity()
Methods in org.camunda.bpm.engine.impl.db.entitymanager.cache that return types with arguments of type DbEntity Modifier and Type Method Description Class<? extends DbEntity>
CachedDbEntity. getEntityType()
Methods in org.camunda.bpm.engine.impl.db.entitymanager.cache with parameters of type DbEntity Modifier and Type Method Description boolean
DbEntityCache. contains(DbEntity dbEntity)
Allows checking whether the provided entity is present in the cacheCachedDbEntity
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 isDbEntityState.PERSISTENT
.boolean
DbEntityCache. isTransient(DbEntity dbEntity)
Allows checking whether the provided entity is present in the cache and isDbEntityState.TRANSIENT
.void
DbEntityCache. putMerged(DbEntity e)
Put aDbEntityState.MERGED
object into the cache.void
DbEntityCache. putPersistent(DbEntity e)
Put aDbEntityState.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 cachevoid
DbEntityCache. setDeleted(DbEntity dbEntity)
Sets an object to a deleted state.void
CachedDbEntity. setEntity(DbEntity dbEntity)
void
DbEntityCache. undoDelete(DbEntity dbEntity)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.db.entitymanager.operation
Fields in org.camunda.bpm.engine.impl.db.entitymanager.operation declared as DbEntity Modifier and Type Field Description protected DbEntity
DbEntityOperation. entity
The entity the operation is performed on.Fields in org.camunda.bpm.engine.impl.db.entitymanager.operation with type parameters of type DbEntity Modifier and Type Field Description protected Class<? extends DbEntity>
DbOperation. entityType
The type of the DbEntity this operation is executed on.Methods in org.camunda.bpm.engine.impl.db.entitymanager.operation that return DbEntity Modifier and Type Method Description DbEntity
DbEntityOperation. getEntity()
Methods in org.camunda.bpm.engine.impl.db.entitymanager.operation that return types with arguments of type DbEntity Modifier and Type Method Description Class<? extends DbEntity>
DbOperation. getEntityType()
Methods in org.camunda.bpm.engine.impl.db.entitymanager.operation with parameters of type DbEntity Modifier and Type Method Description void
DbEntityOperation. setEntity(DbEntity dbEntity)
Method parameters in org.camunda.bpm.engine.impl.db.entitymanager.operation with type arguments of type DbEntity Modifier and Type Method 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 parameters in org.camunda.bpm.engine.impl.db.entitymanager.operation with type arguments of type DbEntity Constructor Description DbBulkOperation(DbOperationType operationType, Class<? extends DbEntity> entityType, String statement, Object parameter)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.db.sql
Methods in org.camunda.bpm.engine.impl.db.sql with type parameters of type DbEntity Modifier and Type Method Description <T extends DbEntity>
TDbSqlSession. selectById(Class<T> type, String id)
Methods in org.camunda.bpm.engine.impl.db.sql with parameters of type DbEntity Modifier and Type Method Description String
DbSqlSessionFactory. getInsertStatement(DbEntity object)
String
DbSqlSessionFactory. getUpdateStatement(DbEntity object)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.dmn.entity.repository
Classes in org.camunda.bpm.engine.impl.dmn.entity.repository that implement DbEntity Modifier and Type Class Description class
DecisionDefinitionEntity
class
DecisionRequirementsDefinitionEntity
-
Uses of DbEntity in org.camunda.bpm.engine.impl.history.event
Methods in org.camunda.bpm.engine.impl.history.event that return types with arguments of type DbEntity Modifier and Type Method Description Map<Class<? extends DbEntity>,DbOperation>
HistoricDecisionInstanceManager. deleteHistoricDecisionsByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.jobexecutor.historycleanup
Fields in org.camunda.bpm.engine.impl.jobexecutor.historycleanup with type parameters of type DbEntity Modifier and Type Field Description protected Map<Class<? extends DbEntity>,DbOperation>
HistoryCleanupRemovalTime. deleteOperations
Methods in org.camunda.bpm.engine.impl.jobexecutor.historycleanup that return types with arguments of type DbEntity Modifier and Type Method Description protected Map<Class<? extends DbEntity>,DbOperation>
HistoryCleanupRemovalTime. performDmnCleanup()
protected Map<Class<? extends DbEntity>,DbOperation>
HistoryCleanupRemovalTime. performProcessCleanup()
-
Uses of DbEntity in org.camunda.bpm.engine.impl.migration.instance.parser
Method parameters in org.camunda.bpm.engine.impl.migration.instance.parser with type arguments of type DbEntity Modifier and Type Method Description void
MigratingInstanceParseContext. ensureNoEntitiesAreLeft(String entityName, Collection<? extends DbEntity> dbEntities, MigratingProcessInstanceValidationReportImpl processInstanceReport)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.persistence
Methods in org.camunda.bpm.engine.impl.persistence with parameters of type DbEntity Modifier and Type Method Description void
AbstractManager. delete(DbEntity dbEntity)
void
AbstractManager. insert(DbEntity dbEntity)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.persistence.entity
Fields in org.camunda.bpm.engine.impl.persistence.entity with type parameters of type DbEntity Modifier and Type Field Description static Map<Class<? extends DbEntity>,String>
TableDataManager. persistentObjectToTableNameMap
Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type DbEntity Modifier and Type Method Description Map<Class<? extends DbEntity>,DbOperation>
HistoricProcessInstanceManager. deleteHistoricProcessInstancesByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize)
List<Class<? extends DbEntity>>
TableDataManager. getEntities(String tableName)
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type DbEntity Modifier and Type Method Description void
AuthorizationManager. delete(DbEntity authorization)
void
CommentManager. delete(DbEntity dbEntity)
void
AuthorizationManager. insert(DbEntity authorization)
void
CommentManager. insert(DbEntity dbEntity)
-
Uses of DbEntity in org.camunda.bpm.engine.impl.persistence.entity.optimize
Classes in org.camunda.bpm.engine.impl.persistence.entity.optimize that implement DbEntity Modifier and Type Class Description class
OptimizeHistoricIdentityLinkLogEntity
-
Uses of DbEntity in org.camunda.bpm.engine.impl.util
Method parameters in org.camunda.bpm.engine.impl.util with type arguments of type DbEntity Modifier and Type Method Description static String
StringUtil. joinDbEntityIds(Collection<? extends DbEntity> dbEntities)
-
Uses of DbEntity in org.camunda.bpm.identity.impl.ldap
Classes in org.camunda.bpm.identity.impl.ldap that implement DbEntity Modifier and Type Class Description class
LdapGroupEntity
class
LdapUserEntity
-