Interface ConfigurationPropertyQuery
-
- All Superinterfaces:
Query<ConfigurationPropertyQuery,ConfigurationProperty>
- All Known Implementing Classes:
ConfigurationPropertyQueryImpl
public interface ConfigurationPropertyQuery extends Query<ConfigurationPropertyQuery,ConfigurationProperty>
- Author:
- Filip Hrisafov
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurationPropertyQuery
description(String description)
Query for configuration properties with the given descriptionConfigurationPropertyQuery
descriptions(Collection<String> descriptions)
Query for configuration properties with the given descriptionsConfigurationPropertyQuery
id(String id)
Query for configuration properties with the given idConfigurationPropertyQuery
lastUpdatedAfter(Date lastUpdatedTime)
Query for configuration properties updated after the given dateConfigurationPropertyQuery
lastUpdatedBefore(Date lastUpdatedTime)
Query for configuration properties updated before the given dateConfigurationPropertyQuery
name(String name)
Query for configuration properties with the given nameConfigurationPropertyQuery
names(Collection<String> names)
Query for configuration properties with the given namesConfigurationPropertyQuery
namespace(String namespace)
Query for configuration properties with the given namespaceConfigurationPropertyQuery
ownerUser(String userId)
Query for configuration properties owned by the user with the given id.ConfigurationPropertyQuery
tenantId(String tenantId)
Query for configuration properties with the given tenant id
-
-
-
Method Detail
-
id
ConfigurationPropertyQuery id(String id)
Query for configuration properties with the given id
-
namespace
ConfigurationPropertyQuery namespace(String namespace)
Query for configuration properties with the given namespace
-
name
ConfigurationPropertyQuery name(String name)
Query for configuration properties with the given name
-
names
ConfigurationPropertyQuery names(Collection<String> names)
Query for configuration properties with the given names
-
description
ConfigurationPropertyQuery description(String description)
Query for configuration properties with the given description
-
descriptions
ConfigurationPropertyQuery descriptions(Collection<String> descriptions)
Query for configuration properties with the given descriptions
-
lastUpdatedBefore
ConfigurationPropertyQuery lastUpdatedBefore(Date lastUpdatedTime)
Query for configuration properties updated before the given date
-
lastUpdatedAfter
ConfigurationPropertyQuery lastUpdatedAfter(Date lastUpdatedTime)
Query for configuration properties updated after the given date
-
tenantId
ConfigurationPropertyQuery tenantId(String tenantId)
Query for configuration properties with the given tenant id
-
ownerUser
ConfigurationPropertyQuery ownerUser(String userId)
Query for configuration properties owned by the user with the given id.- Parameters:
userId
- the id of the user that owns the configuration property
-
-