Package com.flowable.platform.api.tenant
Interface TenantVariableQuery
- All Superinterfaces:
Query<TenantVariableQuery,
TenantVariable>
- All Known Implementing Classes:
TenantVariableQueryImpl
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionQuery for the tenant variable with the given id.Order the result by variable name.Query for tenant variables with the given tenant id.variableName
(String variableName) Query for tenant variables with the given variable name.variableNameLike
(String variableNameLike) Query for tenant variables like the given variable name.variableValueEquals
(String variableName, Object variableValue) Query for tenant variables with the given name and valuevariableValueLike
(String variableName, String variableValue) Query for tenant variables like the given name and valuevariableValueLikeIgnoreCase
(String variableName, String variableValue) Query for tenant variables like the given name and value (case insensitive)variableValueNotEquals
(String variableName, Object variableValue) Query for tenant variables that don't have the given name and value
-
Method Details
-
id
Query for the tenant variable with the given id. -
variableName
Query for tenant variables with the given variable name. -
variableNameLike
Query for tenant variables like the given variable name. -
variableValueEquals
Query for tenant variables with the given name and value -
variableValueNotEquals
Query for tenant variables that don't have the given name and value -
variableValueLike
Query for tenant variables like the given name and value -
variableValueLikeIgnoreCase
Query for tenant variables like the given name and value (case insensitive) -
tenantId
Query for tenant variables with the given tenant id. -
orderByVariableName
TenantVariableQuery orderByVariableName()Order the result by variable name.
-