Interface ConfigurationPropertyQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<ConfigurationPropertyQuery, ConfigurationProperty>
- All Known Implementing Classes:
ConfigurationPropertyQueryImpl
public interface ConfigurationPropertyQuery
extends org.flowable.common.engine.api.query.Query<ConfigurationPropertyQuery, ConfigurationProperty>
- Author:
- Filip Hrisafov
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
org.flowable.common.engine.api.query.Query.NullHandlingOnOrder -
Method Summary
Modifier and TypeMethodDescriptiondescription(String description) Query for configuration properties with the given descriptiondescriptions(Collection<String> descriptions) Query for configuration properties with the given descriptionsQuery for configuration properties with the given idlastUpdatedAfter(Date lastUpdatedTime) Query for configuration properties updated after the given datelastUpdatedBefore(Date lastUpdatedTime) Query for configuration properties updated before the given dateQuery for configuration properties with the given namenameLikeIgnoreCase(String nameLikeIgnoreCase) Query for configuration properties with a name like the given value, case-insensitivenames(Collection<String> names) Query for configuration properties with the given namesQuery for configuration properties with the given namespaceQuery for configuration properties owned by the user with the given id.Query for configuration properties with the given tenant idtenantIdLike(String tenantIdLike) Query for configuration properties with a tenant id like the given oneMethods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
Method Details
-
id
Query for configuration properties with the given id -
namespace
Query for configuration properties with the given namespace -
name
Query for configuration properties with the given name -
nameLikeIgnoreCase
Query for configuration properties with a name like the given value, case-insensitive -
names
Query for configuration properties with the given names -
description
Query for configuration properties with the given description -
descriptions
Query for configuration properties with the given descriptions -
lastUpdatedBefore
Query for configuration properties updated before the given date -
lastUpdatedAfter
Query for configuration properties updated after the given date -
tenantId
Query for configuration properties with the given tenant id -
tenantIdLike
Query for configuration properties with a tenant id like the given one -
ownerUser
Query for configuration properties owned by the user with the given id.- Parameters:
userId- the id of the user that owns the configuration property
-
orderByName
ConfigurationPropertyQuery orderByName()
-