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.QueryQuery.NullHandlingOnOrder
 
- 
 - 
Method SummaryAll 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- 
idConfigurationPropertyQuery id(String id) Query for configuration properties with the given id
 - 
namespaceConfigurationPropertyQuery namespace(String namespace) Query for configuration properties with the given namespace
 - 
nameConfigurationPropertyQuery name(String name) Query for configuration properties with the given name
 - 
namesConfigurationPropertyQuery names(Collection<String> names) Query for configuration properties with the given names
 - 
descriptionConfigurationPropertyQuery description(String description) Query for configuration properties with the given description
 - 
descriptionsConfigurationPropertyQuery descriptions(Collection<String> descriptions) Query for configuration properties with the given descriptions
 - 
lastUpdatedBeforeConfigurationPropertyQuery lastUpdatedBefore(Date lastUpdatedTime) Query for configuration properties updated before the given date
 - 
lastUpdatedAfterConfigurationPropertyQuery lastUpdatedAfter(Date lastUpdatedTime) Query for configuration properties updated after the given date
 - 
tenantIdConfigurationPropertyQuery tenantId(String tenantId) Query for configuration properties with the given tenant id
 - 
ownerUserConfigurationPropertyQuery 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
 
 
- 
 
-