Interface ConfigurationPropertyDataManager
-
- All Superinterfaces:
DataManager<ConfigurationPropertyEntity>
- All Known Implementing Classes:
MybatisConfigurationPropertyDataManager
public interface ConfigurationPropertyDataManager extends DataManager<ConfigurationPropertyEntity>
- Author:
- Filip Hrisafov
-
-
Method Summary
-
-
-
Method Detail
-
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(ConfigurationPropertyQueryImpl configurationPropertyQuery)
-
findByCriteria
List<ConfigurationProperty> findByCriteria(ConfigurationPropertyQueryImpl configurationPropertyQuery)
-
-