Interface TenantVariableQuery

All Superinterfaces:
Query<TenantVariableQuery,TenantVariable>
All Known Implementing Classes:
TenantVariableQueryImpl

public interface TenantVariableQuery extends Query<TenantVariableQuery,TenantVariable>
  • Method Details

    • id

      Query for the tenant variable with the given id.
    • variableName

      TenantVariableQuery variableName(String variableName)
      Query for tenant variables with the given variable name.
    • variableNameLike

      TenantVariableQuery variableNameLike(String variableNameLike)
      Query for tenant variables like the given variable name.
    • variableValueEquals

      TenantVariableQuery variableValueEquals(String variableName, Object variableValue)
      Query for tenant variables with the given name and value
    • variableValueNotEquals

      TenantVariableQuery variableValueNotEquals(String variableName, Object variableValue)
      Query for tenant variables that don't have the given name and value
    • variableValueLike

      TenantVariableQuery variableValueLike(String variableName, String variableValue)
      Query for tenant variables like the given name and value
    • variableValueLikeIgnoreCase

      TenantVariableQuery variableValueLikeIgnoreCase(String variableName, String variableValue)
      Query for tenant variables like the given name and value (case insensitive)
    • tenantId

      TenantVariableQuery tenantId(String tenantId)
      Query for tenant variables with the given tenant id.
    • orderByVariableName

      TenantVariableQuery orderByVariableName()
      Order the result by variable name.