Interface DmnDecisionQuery

    • Method Detail

      • decisionCategory

        DmnDecisionQuery decisionCategory​(String decisionCategory)
        Only select decisions with the given category.
      • decisionCategoryLike

        DmnDecisionQuery decisionCategoryLike​(String decisionCategoryLike)
        Only select decisions where the category matches the given parameter. The syntax that should be used is the same as in SQL, eg. %test%
      • decisionName

        DmnDecisionQuery decisionName​(String decisionName)
        Only select decisions with the given name.
      • decisionNameLike

        DmnDecisionQuery decisionNameLike​(String decisionNameLike)
        Only select decisions where the name matches the given parameter. The syntax that should be used is the same as in SQL, eg. %test%
      • deploymentId

        DmnDecisionQuery deploymentId​(String deploymentId)
        Only select decisions that are deployed in a deployment with the given deployment id
      • deploymentIds

        DmnDecisionQuery deploymentIds​(Set<String> deploymentIds)
        Select decisions that are deployed in deployments with the given set of ids
      • parentDeploymentId

        DmnDecisionQuery parentDeploymentId​(String parentDeploymentId)
        Only select decisions that are deployed in a deployment with the given parent deployment id
      • decisionKeyLike

        DmnDecisionQuery decisionKeyLike​(String decisionKeyLike)
        Only select decisions where the key matches the given parameter. The syntax that should be used is the same as in SQL, eg. %test%
      • decisionVersionGreaterThan

        DmnDecisionQuery decisionVersionGreaterThan​(Integer decisionVersion)
        Only select decisions which version are greater than a certain version.
      • decisionVersionGreaterThanOrEquals

        DmnDecisionQuery decisionVersionGreaterThanOrEquals​(Integer decisionVersion)
        Only select decisions which version are greater than or equals a certain version.
      • decisionVersionLowerThan

        DmnDecisionQuery decisionVersionLowerThan​(Integer decisionVersion)
        Only select decisions which version are lower than a certain version.
      • decisionVersionLowerThanOrEquals

        DmnDecisionQuery decisionVersionLowerThanOrEquals​(Integer decisionVersion)
        Only select decisions which version are lower than or equals a certain version.
      • decisionResourceName

        DmnDecisionQuery decisionResourceName​(String resourceName)
        Only select decision with the given resource name.
      • decisionResourceNameLike

        DmnDecisionQuery decisionResourceNameLike​(String resourceNameLike)
        Only select decision with a resource name like the given .
      • decisionTenantId

        DmnDecisionQuery decisionTenantId​(String tenantId)
        Only select decisions that have the given tenant id.
      • decisionTenantIdLike

        DmnDecisionQuery decisionTenantIdLike​(String tenantIdLike)
        Only select decisions with a tenant id like the given one.
      • decisionWithoutTenantId

        DmnDecisionQuery decisionWithoutTenantId()
        Only select decisions that do not have a tenant id.
      • decisionType

        DmnDecisionQuery decisionType​(String decisionType)
        Only select decisions with the given type.
      • decisionTypeLike

        DmnDecisionQuery decisionTypeLike​(String decisionType)
        Only select decisions like the given type.