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