Interface ConfigurationPropertyEntityManager
-
- All Superinterfaces:
EntityManager<ConfigurationPropertyEntity>
- All Known Implementing Classes:
ConfigurationPropertyEntityManagerImpl
public interface ConfigurationPropertyEntityManager extends EntityManager<ConfigurationPropertyEntity>
- Author:
- Filip Hrisafov
-
-
Method Summary
-
-
-
Method Detail
-
createQuery
ConfigurationPropertyQuery createQuery()
-
findByNamespace
List<ConfigurationPropertyEntity> findByNamespace(String namespace)
-
findByNamespaceAndTenantId
List<ConfigurationPropertyEntity> findByNamespaceAndTenantId(String namespace, String tenantId)
-
findPropertiesByNamespaceAndName
List<ConfigurationPropertyEntity> findPropertiesByNamespaceAndName(String namespace, String name)
-
findPropertiesByNamespaceNameAndTenantId
List<ConfigurationPropertyEntity> findPropertiesByNamespaceNameAndTenantId(String namespace, String name, String tenantId)
-
findByNamespaceAndName
ConfigurationPropertyEntity findByNamespaceAndName(String namespace, String name)
-
findByNamespaceAndNameAndTenantId
ConfigurationPropertyEntity findByNamespaceAndNameAndTenantId(String namespace, String name, String tenantId)
-
deleteByNamespace
void deleteByNamespace(String namespace)
-
deleteByNamespaceAndNameAndTenantId
void deleteByNamespaceAndNameAndTenantId(String namespace, String name, String tenantId)
-
countByCriteria
long countByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
-
findByCriteria
List<ConfigurationProperty> findByCriteria(ConfigurationPropertyQuery configurationPropertyQuery)
-
-