Class AppVariableEntityManagerImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntityManager<EntityImpl,DM>
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager<AppEngineConfiguration,AppVariableEntity,AppVariableDataManager>
-
- com.flowable.app.engine.impl.persistence.entity.AppVariableEntityManagerImpl
-
- All Implemented Interfaces:
AppVariableEntityManager
,EntityManager<AppVariableEntity>
public class AppVariableEntityManagerImpl extends AbstractEngineEntityManager<AppEngineConfiguration,AppVariableEntity,AppVariableDataManager> implements AppVariableEntityManager
-
-
Field Summary
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager
engineConfiguration
-
Fields inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntityManager
dataManager, engineType
-
-
Constructor Summary
Constructors Constructor Description AppVariableEntityManagerImpl(AppEngineConfiguration appEngineConfiguration, AppVariableDataManager appVariableDataManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AppVariableEntity
create(String appKey, String tenantId, String name, VariableType type, Object value)
AppVariableQuery
createAppVariableQuery()
void
delete(AppVariableEntity entity, boolean fireDeleteEvent)
void
deleteAppVariablesByAppKey(String appKey)
void
deleteAppVariablesByAppKeyAndTenantId(String appKey, String tenantId)
AppVariableEntity
findAppVariableByAppKeyAndName(String appKey, String variableName)
AppVariableEntity
findAppVariableByAppKeyAndTenantIdAndName(String appKey, String tenantId, String variableName)
long
findAppVariableCountByQueryCriteria(AppVariableQueryImpl appVariableQuery)
List<AppVariableEntity>
findAppVariablesByAppKey(String appKey)
List<AppVariableEntity>
findAppVariablesByAppKeyAndTenantId(String appKey, String tenantId)
List<AppVariable>
findAppVariablesByQueryCriteria(AppVariableQueryImpl appVariableQuery)
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager
getClock, getCommandExecutor, getEngineConfiguration, getEventDispatcher
-
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntityManager
create, createEntityEvent, delete, delete, findById, fireEntityDeletedEvent, fireEntityInsertedEvent, fireEntityUpdatedEvent, getDataManager, insert, insert, setDataManager, update, update
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.flowable.app.engine.impl.persistence.entity.AppVariableEntityManager
insert
-
-
-
-
Constructor Detail
-
AppVariableEntityManagerImpl
public AppVariableEntityManagerImpl(AppEngineConfiguration appEngineConfiguration, AppVariableDataManager appVariableDataManager)
-
-
Method Detail
-
create
public AppVariableEntity create(String appKey, String tenantId, String name, VariableType type, Object value)
- Specified by:
create
in interfaceAppVariableEntityManager
-
findAppVariablesByAppKey
public List<AppVariableEntity> findAppVariablesByAppKey(String appKey)
- Specified by:
findAppVariablesByAppKey
in interfaceAppVariableEntityManager
-
findAppVariablesByAppKeyAndTenantId
public List<AppVariableEntity> findAppVariablesByAppKeyAndTenantId(String appKey, String tenantId)
- Specified by:
findAppVariablesByAppKeyAndTenantId
in interfaceAppVariableEntityManager
-
findAppVariableByAppKeyAndName
public AppVariableEntity findAppVariableByAppKeyAndName(String appKey, String variableName)
- Specified by:
findAppVariableByAppKeyAndName
in interfaceAppVariableEntityManager
-
findAppVariableByAppKeyAndTenantIdAndName
public AppVariableEntity findAppVariableByAppKeyAndTenantIdAndName(String appKey, String tenantId, String variableName)
- Specified by:
findAppVariableByAppKeyAndTenantIdAndName
in interfaceAppVariableEntityManager
-
createAppVariableQuery
public AppVariableQuery createAppVariableQuery()
- Specified by:
createAppVariableQuery
in interfaceAppVariableEntityManager
-
findAppVariableCountByQueryCriteria
public long findAppVariableCountByQueryCriteria(AppVariableQueryImpl appVariableQuery)
- Specified by:
findAppVariableCountByQueryCriteria
in interfaceAppVariableEntityManager
-
findAppVariablesByQueryCriteria
public List<AppVariable> findAppVariablesByQueryCriteria(AppVariableQueryImpl appVariableQuery)
- Specified by:
findAppVariablesByQueryCriteria
in interfaceAppVariableEntityManager
-
delete
public void delete(AppVariableEntity entity, boolean fireDeleteEvent)
- Specified by:
delete
in interfaceEntityManager<AppVariableEntity>
- Overrides:
delete
in classAbstractEntityManager<AppVariableEntity,AppVariableDataManager>
-
deleteAppVariablesByAppKey
public void deleteAppVariablesByAppKey(String appKey)
- Specified by:
deleteAppVariablesByAppKey
in interfaceAppVariableEntityManager
-
deleteAppVariablesByAppKeyAndTenantId
public void deleteAppVariablesByAppKeyAndTenantId(String appKey, String tenantId)
- Specified by:
deleteAppVariablesByAppKeyAndTenantId
in interfaceAppVariableEntityManager
-
-