Interface MasterDataInstanceQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<MasterDataInstanceQuery,MasterDataInstance>
- All Known Implementing Classes:
MasterDataInstanceQueryImpl
public interface MasterDataInstanceQuery extends org.flowable.common.engine.api.query.Query<MasterDataInstanceQuery,MasterDataInstance>
The query interface to create a query to search for master data instances.
Either the master data definition id, key or external id needs to be present in order to query for instances as there is no way (and not necessary) to query
across different master data types.
- Author:
- Micha Kiener
-
Nested Class Summary
-
Method Summary
-
Method Details
-
definitionId
-
definitionExternalId
-
definitionKey
-
id
-
tenantId
-
externalId
-
externalIdLike
-
key
-
keyLike
-
name
-
nameLike
-
nameLikeIgnoreCase
-
state
-
onlyActive
MasterDataInstanceQuery onlyActive() -
variableValueEquals
-
variableValueEqualsIgnoreCase
MasterDataInstanceQuery variableValueEqualsIgnoreCase(java.lang.String name, java.lang.String value) -
variableValueLike
-
variableValueLikeIgnoreCase
MasterDataInstanceQuery variableValueLikeIgnoreCase(java.lang.String name, java.lang.String valueLike) -
includeVariables
MasterDataInstanceQuery includeVariables() -
orderByName
MasterDataInstanceQuery orderByName() -
orderByKey
MasterDataInstanceQuery orderByKey() -
orderByExternalId
MasterDataInstanceQuery orderByExternalId() -
orderByCreationTime
MasterDataInstanceQuery orderByCreationTime() -
orderByUpdateTime
MasterDataInstanceQuery orderByUpdateTime()
-