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 ConfigurationPropertyQuerydescription(String description)Query for configuration properties with the given descriptionConfigurationPropertyQuerydescriptions(Collection<String> descriptions)Query for configuration properties with the given descriptionsConfigurationPropertyQueryid(String id)Query for configuration properties with the given idConfigurationPropertyQuerylastUpdatedAfter(Date lastUpdatedTime)Query for configuration properties updated after the given dateConfigurationPropertyQuerylastUpdatedBefore(Date lastUpdatedTime)Query for configuration properties updated before the given dateConfigurationPropertyQueryname(String name)Query for configuration properties with the given nameConfigurationPropertyQuerynames(Collection<String> names)Query for configuration properties with the given namesConfigurationPropertyQuerynamespace(String namespace)Query for configuration properties with the given namespaceConfigurationPropertyQueryownerUser(String userId)Query for configuration properties owned by the user with the given id.ConfigurationPropertyQuerytenantId(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
-
-