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
,org.flowable.common.engine.impl.persistence.entity.EntityManager<ConfigurationPropertyEntity>
public class ConfigurationPropertyEntityManagerImpl extends org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager<PlatformEngineConfiguration,ConfigurationPropertyEntity,ConfigurationPropertyDataManager> implements ConfigurationPropertyEntityManager
- Author:
- Filip Hrisafov
-
-
Constructor Summary
Constructors Constructor Description ConfigurationPropertyEntityManagerImpl(PlatformEngineConfiguration configuration, ConfigurationPropertyDataManager configurationPropertyDataManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
countByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
ConfigurationPropertyQuery
createQuery()
void
delete(ConfigurationPropertyEntity entity, boolean fireDeleteEvent)
void
deleteByNamespace(java.lang.String namespace)
void
deleteByNamespaceAndName(java.lang.String namespace, java.lang.String name)
void
deleteByNamespaceAndNameAndTenantId(java.lang.String namespace, java.lang.String name, java.lang.String tenantId)
java.util.List<ConfigurationProperty>
findByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
java.util.List<ConfigurationPropertyEntity>
findByNamespace(java.lang.String namespace)
ConfigurationPropertyEntity
findByNamespaceAndName(java.lang.String namespace, java.lang.String name)
ConfigurationPropertyEntity
findByNamespaceAndNameAndTenantId(java.lang.String namespace, java.lang.String name, java.lang.String tenantId)
java.util.List<ConfigurationPropertyEntity>
findByNamespaceAndTenantId(java.lang.String namespace, java.lang.String tenantId)
java.util.List<ConfigurationPropertyEntity>
findPropertiesByNamespaceAndName(java.lang.String namespace, java.lang.String name)
java.util.List<ConfigurationPropertyEntity>
findPropertiesByNamespaceNameAndTenantId(java.lang.String namespace, java.lang.String name, java.lang.String tenantId)
-
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 java.util.List<ConfigurationPropertyEntity> findByNamespace(java.lang.String namespace)
- Specified by:
findByNamespace
in interfaceConfigurationPropertyEntityManager
-
findByNamespaceAndTenantId
public java.util.List<ConfigurationPropertyEntity> findByNamespaceAndTenantId(java.lang.String namespace, java.lang.String tenantId)
- Specified by:
findByNamespaceAndTenantId
in interfaceConfigurationPropertyEntityManager
-
findPropertiesByNamespaceAndName
public java.util.List<ConfigurationPropertyEntity> findPropertiesByNamespaceAndName(java.lang.String namespace, java.lang.String name)
- Specified by:
findPropertiesByNamespaceAndName
in interfaceConfigurationPropertyEntityManager
-
findPropertiesByNamespaceNameAndTenantId
public java.util.List<ConfigurationPropertyEntity> findPropertiesByNamespaceNameAndTenantId(java.lang.String namespace, java.lang.String name, java.lang.String tenantId)
- Specified by:
findPropertiesByNamespaceNameAndTenantId
in interfaceConfigurationPropertyEntityManager
-
findByNamespaceAndName
public ConfigurationPropertyEntity findByNamespaceAndName(java.lang.String namespace, java.lang.String name)
- Specified by:
findByNamespaceAndName
in interfaceConfigurationPropertyEntityManager
-
findByNamespaceAndNameAndTenantId
public ConfigurationPropertyEntity findByNamespaceAndNameAndTenantId(java.lang.String namespace, java.lang.String name, java.lang.String tenantId)
- Specified by:
findByNamespaceAndNameAndTenantId
in interfaceConfigurationPropertyEntityManager
-
delete
public void delete(ConfigurationPropertyEntity entity, boolean fireDeleteEvent)
- Specified by:
delete
in interfaceorg.flowable.common.engine.impl.persistence.entity.EntityManager<ConfigurationPropertyEntity>
- Overrides:
delete
in classorg.flowable.common.engine.impl.persistence.entity.AbstractEntityManager<ConfigurationPropertyEntity,ConfigurationPropertyDataManager>
-
deleteByNamespace
public void deleteByNamespace(java.lang.String namespace)
- Specified by:
deleteByNamespace
in interfaceConfigurationPropertyEntityManager
-
deleteByNamespaceAndName
public void deleteByNamespaceAndName(java.lang.String namespace, java.lang.String name)
- Specified by:
deleteByNamespaceAndName
in interfaceConfigurationPropertyEntityManager
-
deleteByNamespaceAndNameAndTenantId
public void deleteByNamespaceAndNameAndTenantId(java.lang.String namespace, java.lang.String name, java.lang.String tenantId)
- Specified by:
deleteByNamespaceAndNameAndTenantId
in interfaceConfigurationPropertyEntityManager
-
countByCriteria
public long countByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
- Specified by:
countByCriteria
in interfaceConfigurationPropertyEntityManager
-
findByCriteria
public java.util.List<ConfigurationProperty> findByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
- Specified by:
findByCriteria
in interfaceConfigurationPropertyEntityManager
-
-