Interface DecisionRequirementsDefinitionQuery

All Superinterfaces:
Query<DecisionRequirementsDefinitionQuery,DecisionRequirementsDefinition>
All Known Implementing Classes:
DecisionRequirementsDefinitionQueryImpl

public interface DecisionRequirementsDefinitionQuery extends Query<DecisionRequirementsDefinitionQuery,DecisionRequirementsDefinition>
  • Method Details

    • decisionRequirementsDefinitionId

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionId(String id)
      Only select decision requirements definition with the given id.
      Parameters:
      id - the id of the decision requirements definition
    • decisionRequirementsDefinitionIdIn

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionIdIn(String... ids)
      Only select decision requirements definition with the given ids.
      Parameters:
      ids - list of decision requirements definition ids
    • decisionRequirementsDefinitionCategory

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionCategory(String category)
      Only select decision requirements definition with the given category.
      Parameters:
      category - the category of the decision requirements definition
    • decisionRequirementsDefinitionCategoryLike

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionCategoryLike(String categoryLike)
      Only select decision requirements definition where the category matches the given parameter. The syntax that should be used is the same as in SQL, e.g., %category%.
      Parameters:
      categoryLike - the pattern to match the decision requirements definition category
    • decisionRequirementsDefinitionName

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionName(String name)
      Only select decision requirements definition with the given name.
      Parameters:
      name - the name of the decision requirements definition
    • decisionRequirementsDefinitionNameLike

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionNameLike(String nameLike)
      Only select decision requirements definition where the name matches the given parameter. The syntax that should be used is the same as in SQL, e.g., %name%.
      Parameters:
      nameLike - the pattern to match the decision requirements definition name
    • decisionRequirementsDefinitionKey

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionKey(String key)
      Only select decision requirements definition with the given key.
      Parameters:
      key - the key of the decision definition
    • decisionRequirementsDefinitionKeyLike

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionKeyLike(String keyLike)
      Only select decision requirements definition where the key matches the given parameter. The syntax that should be used is the same as in SQL, e.g., %key%.
      Parameters:
      keyLike - the pattern to match the decision requirements definition key
    • deploymentId

      DecisionRequirementsDefinitionQuery deploymentId(String deploymentId)
      Only select decision requirements definition that are deployed in a deployment with the given deployment id.
      Parameters:
      deploymentId - the id of the deployment
    • decisionRequirementsDefinitionVersion

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionVersion(Integer version)
      Only select decision requirements definition with a certain version. Particularly useful when used in combination with decisionRequirementsDefinitionKey(String)
      Parameters:
      version - the version of the decision requirements definition
    • latestVersion

      Only select the decision requirements definition which are the latest deployed (i.e. which have the highest version number for the given key). Can only be used in combination with decisionRequirementsDefinitionKey(String) or decisionRequirementsDefinitionKeyLike(String). Can also be used without any other criteria (i.e. query.latest().list()), which will then give all the latest versions of all the deployed decision requirements definition.
    • decisionRequirementsDefinitionResourceName

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionResourceName(String resourceName)
      Only select decision requirements definition with the given resource name.
      Parameters:
      resourceName - the name of the resource
    • decisionRequirementsDefinitionResourceNameLike

      DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionResourceNameLike(String resourceNameLike)
      Only select decision requirements definition with a resource name like the given. The syntax that should be used is the same as in SQL, e.g., %resourceName%.
      Parameters:
      resourceNameLike - the pattern to match the resource name
    • tenantIdIn

      DecisionRequirementsDefinitionQuery tenantIdIn(String... tenantIds)
      Only select decision requirements definition with one of the given tenant ids.
    • withoutTenantId

      Only select decision requirements definition which have no tenant id.
    • includeDecisionRequirementsDefinitionsWithoutTenantId

      DecisionRequirementsDefinitionQuery includeDecisionRequirementsDefinitionsWithoutTenantId()
      Select decision requirements definition which have no tenant id. Can be used in combination with tenantIdIn(String...).
    • orderByDecisionRequirementsDefinitionCategory

      DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionCategory()
      Order by the category of the decision requirements definition (needs to be followed by Query.asc() or Query.desc()).
    • orderByDecisionRequirementsDefinitionKey

      DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionKey()
      Order by decision requirements definition key (needs to be followed by Query.asc() or Query.desc()).
    • orderByDecisionRequirementsDefinitionId

      DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionId()
      Order by the id of the decision requirements definition (needs to be followed by Query.asc() or Query.desc()).
    • orderByDecisionRequirementsDefinitionVersion

      DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionVersion()
      Order by the version of the decision requirements definition (needs to be followed by Query.asc() or Query.desc()).
    • orderByDecisionRequirementsDefinitionName

      DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionName()
      Order by the name of the decision requirements definition (needs to be followed by Query.asc() or Query.desc()).
    • orderByDeploymentId

      Order by deployment id (needs to be followed by Query.asc() or Query.desc()).
    • orderByTenantId

      Order by tenant id (needs to be followed by Query.asc() or Query.desc()). Note that the ordering of decision requirements definition without tenant id is database-specific.