Uses of Interface
org.camunda.bpm.engine.impl.db.DbEntity

Packages that use DbEntity
org.camunda.bpm.engine.impl.cmd   
org.camunda.bpm.engine.impl.cmmn.entity.repository   
org.camunda.bpm.engine.impl.cmmn.entity.runtime   
org.camunda.bpm.engine.impl.db   
org.camunda.bpm.engine.impl.db.entitymanager   
org.camunda.bpm.engine.impl.db.entitymanager.cache   
org.camunda.bpm.engine.impl.db.entitymanager.operation   
org.camunda.bpm.engine.impl.db.sql   
org.camunda.bpm.engine.impl.dmn.entity.repository   
org.camunda.bpm.engine.impl.history.event   
org.camunda.bpm.engine.impl.persistence   
org.camunda.bpm.engine.impl.persistence.entity   
 

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
 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
 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
 class CaseExecutionEntity
           
 class CaseSentryPartEntity
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime with parameters of type DbEntity
 boolean CaseExecutionEntity.hasReferenceTo(DbEntity entity)
           
 

Uses of DbEntity in org.camunda.bpm.engine.impl.db
 

Methods in org.camunda.bpm.engine.impl.db with type parameters of type DbEntity
<T extends DbEntity>
ProcessEngineException
EnginePersistenceLogger.entityCacheLookupException(Class<T> type, String id, Class<? extends DbEntity> entity, Throwable cause)
           
<T extends DbEntity>
T
PersistenceSession.selectById(Class<T> type, String id)
           
 

Methods in org.camunda.bpm.engine.impl.db with parameters of type DbEntity
 boolean HasDbReferences.hasReferenceTo(DbEntity entity)
           
 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
 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>
ProcessEngineException
EnginePersistenceLogger.entityCacheLookupException(Class<T> type, String id, Class<? extends DbEntity> entity, Throwable cause)
           
 

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
<T extends DbEntity>
List<T>
DbEntityManager.getCachedEntitiesByType(Class<T> type)
           
<T extends DbEntity>
T
DbEntityManager.getCachedEntity(Class<T> type, String id)
           
<T extends DbEntity>
List<T>
DbEntityManager.pruneDeletedEntities(List<T> listToPrune)
           
<T extends DbEntity>
T
DbEntityManager.selectById(Class<T> entityClass, String id)
           
 

Methods in org.camunda.bpm.engine.impl.db.entitymanager that return DbEntity
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
 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
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)
           
 

Method parameters in org.camunda.bpm.engine.impl.db.entitymanager with type arguments of type DbEntity
 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)
           
 

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
protected  DbEntity CachedDbEntity.dbEntity
           
 

Methods in org.camunda.bpm.engine.impl.db.entitymanager.cache with type parameters of type DbEntity
<T extends DbEntity>
T
DbEntityCache.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
 DbEntity CachedDbEntity.getEntity()
           
 

Methods in org.camunda.bpm.engine.impl.db.entitymanager.cache with parameters of type DbEntity
 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)
           
 

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
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
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
 DbEntity DbEntityOperation.getEntity()
           
 

Methods in org.camunda.bpm.engine.impl.db.entitymanager.operation that return types with arguments of type DbEntity
 Class<? extends DbEntity> DbOperation.getEntityType()
           
 

Methods in org.camunda.bpm.engine.impl.db.entitymanager.operation with parameters of type DbEntity
 void DbEntityOperation.setEntity(DbEntity dbEntity)
           
 

Method parameters in org.camunda.bpm.engine.impl.db.entitymanager.operation with type arguments of type DbEntity
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)
           
 

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
<T extends DbEntity>
T
DbSqlSession.selectById(Class<T> type, String id)
           
 

Methods in org.camunda.bpm.engine.impl.db.sql with parameters of type DbEntity
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)
           
 

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
 class DecisionDefinitionEntity
           
 

Uses of DbEntity in org.camunda.bpm.engine.impl.history.event
 

Classes in org.camunda.bpm.engine.impl.history.event that implement DbEntity
 class HistoricActivityInstanceEventEntity
          HistoryEvent implementation for events that happen in an activity.
 class HistoricCaseActivityInstanceEventEntity
          HistoryEvent implementation for events that happen in a case activity.
 class HistoricCaseInstanceEventEntity
           
 class HistoricDecisionInputInstanceEntity
           
 class HistoricDecisionInstanceEntity
          History entry for an evaluated decision.
 class HistoricDecisionOutputInstanceEntity
           
 class HistoricDetailEventEntity
           
 class HistoricFormPropertyEventEntity
           
 class HistoricIncidentEventEntity
           
 class HistoricJobLogEvent
           
 class HistoricProcessInstanceEventEntity
          HistoryEvent signifying a top-level event in a process instance.
 class HistoricScopeInstanceEvent
           
 class HistoricTaskInstanceEventEntity
           
 class HistoricVariableUpdateEventEntity
           
 class HistoryEvent
          The base class for all history events.
 class UserOperationLogEntryEventEntity
           
 

Uses of DbEntity in org.camunda.bpm.engine.impl.persistence
 

Methods in org.camunda.bpm.engine.impl.persistence with parameters of type DbEntity
 void AbstractManager.delete(DbEntity dbEntity)
           
 void AbstractManager.insert(DbEntity dbEntity)
           
 

Uses of DbEntity in org.camunda.bpm.engine.impl.persistence.entity
 

Classes in org.camunda.bpm.engine.impl.persistence.entity that implement DbEntity
 class AttachmentEntity
           
 class AuthorizationEntity
           
 class ByteArrayEntity
           
 class CommentEntity
           
 class CompensateEventSubscriptionEntity
           
 class DeploymentEntity
           
 class DeploymentStatisticsEntity
           
 class EventSubscriptionEntity
           
 class ExecutionEntity
           
 class ExternalTaskEntity
           
 class FilterEntity
           
 class GroupEntity
           
 class HistoricActivityInstanceEntity
           
 class HistoricCaseActivityInstanceEntity
           
 class HistoricCaseInstanceEntity
           
 class HistoricDetailVariableInstanceUpdateEntity
           
 class HistoricFormPropertyEntity
           
 class HistoricIncidentEntity
           
 class HistoricJobLogEventEntity
           
 class HistoricProcessInstanceEntity
           
 class HistoricTaskInstanceEntity
           
 class HistoricVariableInstanceEntity
           
 class IdentityInfoEntity
           
 class IdentityLinkEntity
           
 class IncidentEntity
           
 class JobDefinitionEntity
           
 class JobEntity
          Stub of the common parts of a Job.
 class MembershipEntity
           
 class MessageEntity
          NOTE: instances of Messge Entity should be created via MessageJobDeclaration.
 class MessageEventSubscriptionEntity
           
 class MeterLogEntity
           
 class ProcessDefinitionEntity
           
 class ProcessDefinitionStatisticsEntity
           
 class PropertyEntity
           
 class ResourceEntity
           
 class SignalEventSubscriptionEntity
           
 class TaskEntity
           
 class TimerEntity
           
 class UserEntity
           
 class VariableInstanceEntity
           
 

Fields in org.camunda.bpm.engine.impl.persistence.entity with type parameters of type DbEntity
static Map<Class<? extends DbEntity>,String> TableDataManager.persistentObjectToTableNameMap
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type DbEntity
 void AuthorizationManager.delete(DbEntity authorization)
           
 void CommentManager.delete(DbEntity dbEntity)
           
 boolean ExecutionEntity.hasReferenceTo(DbEntity entity)
           
 boolean IncidentEntity.hasReferenceTo(DbEntity entity)
           
 void AuthorizationManager.insert(DbEntity authorization)
           
 void CommentManager.insert(DbEntity dbEntity)
           
 



Copyright © 2016 camunda services GmbH. All rights reserved.