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