Class ConfigurationPropertyEntityManagerImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEntityManager<EntityImpl,DM>
-
- org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager<PlatformEngineConfiguration,ConfigurationPropertyEntity,ConfigurationPropertyDataManager>
-
- com.flowable.platform.engine.impl.persistence.entity.ConfigurationPropertyEntityManagerImpl
-
- All Implemented Interfaces:
ConfigurationPropertyEntityManager
,EntityManager<ConfigurationPropertyEntity>
public class ConfigurationPropertyEntityManagerImpl extends AbstractEngineEntityManager<PlatformEngineConfiguration,ConfigurationPropertyEntity,ConfigurationPropertyDataManager> implements ConfigurationPropertyEntityManager
- Author:
- Filip Hrisafov
-
-
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 ConfigurationPropertyEntityManagerImpl(PlatformEngineConfiguration configuration, ConfigurationPropertyDataManager configurationPropertyDataManager)
-
Method Summary
-
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
-
-
-
-
Constructor Detail
-
ConfigurationPropertyEntityManagerImpl
public ConfigurationPropertyEntityManagerImpl(PlatformEngineConfiguration configuration, ConfigurationPropertyDataManager configurationPropertyDataManager)
-
-
Method Detail
-
createQuery
public ConfigurationPropertyQuery createQuery()
- Specified by:
createQuery
in interfaceConfigurationPropertyEntityManager
-
findByNamespace
public List<ConfigurationPropertyEntity> findByNamespace(String namespace)
- Specified by:
findByNamespace
in interfaceConfigurationPropertyEntityManager
-
findByNamespaceAndTenantId
public List<ConfigurationPropertyEntity> findByNamespaceAndTenantId(String namespace, String tenantId)
- Specified by:
findByNamespaceAndTenantId
in interfaceConfigurationPropertyEntityManager
-
findPropertiesByNamespaceAndName
public List<ConfigurationPropertyEntity> findPropertiesByNamespaceAndName(String namespace, String name)
- Specified by:
findPropertiesByNamespaceAndName
in interfaceConfigurationPropertyEntityManager
-
findPropertiesByNamespaceNameAndTenantId
public List<ConfigurationPropertyEntity> findPropertiesByNamespaceNameAndTenantId(String namespace, String name, String tenantId)
- Specified by:
findPropertiesByNamespaceNameAndTenantId
in interfaceConfigurationPropertyEntityManager
-
findByNamespaceAndName
public ConfigurationPropertyEntity findByNamespaceAndName(String namespace, String name)
- Specified by:
findByNamespaceAndName
in interfaceConfigurationPropertyEntityManager
-
findByNamespaceAndNameAndTenantId
public ConfigurationPropertyEntity findByNamespaceAndNameAndTenantId(String namespace, String name, String tenantId)
- Specified by:
findByNamespaceAndNameAndTenantId
in interfaceConfigurationPropertyEntityManager
-
delete
public void delete(ConfigurationPropertyEntity entity, boolean fireDeleteEvent)
- Specified by:
delete
in interfaceEntityManager<ConfigurationPropertyEntity>
- Overrides:
delete
in classAbstractEntityManager<ConfigurationPropertyEntity,ConfigurationPropertyDataManager>
-
deleteByNamespace
public void deleteByNamespace(String namespace)
- Specified by:
deleteByNamespace
in interfaceConfigurationPropertyEntityManager
-
deleteByNamespaceAndName
public void deleteByNamespaceAndName(String namespace, String name)
- Specified by:
deleteByNamespaceAndName
in interfaceConfigurationPropertyEntityManager
-
deleteByNamespaceAndNameAndTenantId
public void deleteByNamespaceAndNameAndTenantId(String namespace, String name, String tenantId)
- Specified by:
deleteByNamespaceAndNameAndTenantId
in interfaceConfigurationPropertyEntityManager
-
countByCriteria
public long countByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
- Specified by:
countByCriteria
in interfaceConfigurationPropertyEntityManager
-
findByCriteria
public List<ConfigurationProperty> findByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
- Specified by:
findByCriteria
in interfaceConfigurationPropertyEntityManager
-
-