Package org.kie.internal.task.query
Interface TaskSummaryQueryBuilder
-
- All Superinterfaces:
ExtendedParametrizedQueryBuilder<TaskSummaryQueryBuilder,org.kie.api.task.model.TaskSummary>,ParametrizedQueryBuilder<TaskSummaryQueryBuilder>,ProcessIdQueryBuilder<TaskSummaryQueryBuilder,org.kie.api.task.model.TaskSummary>,ProcessInstanceIdQueryBuilder<TaskSummaryQueryBuilder,org.kie.api.task.model.TaskSummary>
public interface TaskSummaryQueryBuilder extends ProcessIdQueryBuilder<TaskSummaryQueryBuilder,org.kie.api.task.model.TaskSummary>
An instance of this class is used to dynamically create a query to retrieveTaskSummaryinstances. One of the main motivations behind this class is that adding new methods to this method provides a (factorial) increase in ways to query forTaskSummaryinstances without unnecessarily cluttering up the interface, unlike the deprecated "get*" method signatures,
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTaskSummaryQueryBuilder.OrderBy/** An enum used to specify the criteria for ordering the results of the query
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaskSummaryQueryBuilderactivationTime(Date... activationTime)Add one or more activation times as a criteria to the queryTaskSummaryQueryBuilderactivationTimeRange(Date activationTimeMin, Date activationTimeMax)Specify an inclusive range of (task) activation-time dates to use as a criteriaTaskSummaryQueryBuilderactualOwner(String... actualOwnerUserId)Add one or more (actual) task owner ids as a criteria to the queryTaskSummaryQueryBuilderarchived(boolean archived)Add whether or not the task is archived as a criteria to the queryTaskSummaryQueryBuilderascending(TaskSummaryQueryBuilder.OrderBy orderBy)Order the results in ascending order by the given parameterTaskSummaryQueryBuilderbusinessAdmin(String... businessAdminId)Add one or more business administrator (user) ids as a criteria to the queryTaskSummaryQueryBuildercreatedBy(String... createdById)Add one or more initiator user ids as a criteria to the queryTaskSummaryQueryBuildercreatedOn(Date... createdOnDate)Add one or more creation dates as a criteria to the queryTaskSummaryQueryBuildercreatedOnRange(Date createdOnMin, Date createdOnMax)Specify an inclusive range of (task) creation dates to use as a criteriaTaskSummaryQueryBuilderdeploymentId(String... deploymentId)Add one or more deployment ids as a criteria to the queryTaskSummaryQueryBuilderdescending(TaskSummaryQueryBuilder.OrderBy orderBy)Order the results in descending order by the given parameterTaskSummaryQueryBuilderdescription(String... description)Add one or more descriptions as a criteria to the queryTaskSummaryQueryBuilderexpirationTime(Date... expirationTime)Add one or more expiration times as a criteria to the queryTaskSummaryQueryBuilderexpirationTimeRange(Date expirationTimeMin, Date expirationTimeMax)Specify an inclusive range of (task) expiration-time dates to use as a criteriaTaskSummaryQueryBuilderformName(String... formName)Add one or more (task) form names as a criteria to the queryTaskSummaryQueryBuildername(String... name)Add one or more (task) names as a criteria to the queryTaskSummaryQueryBuilderpotentialOwner(String... potentialOwnerId)Add one or more potential owner ids as a criteria to the queryTaskSummaryQueryBuilderpriority(int... priority)Add one or more priorities as a criteria to the queryTaskSummaryQueryBuilderprocessSessionId(long... processSessionId)Add one or more work item ids as a criteria to the queryTaskSummaryQueryBuilderskippable(boolean skippable)Add whether or not the task is skippable as a criteria to the queryTaskSummaryQueryBuilderstakeHolder(String... stakeHolderId)Add one or more stake holder (user) ids as a criteria to the queryTaskSummaryQueryBuilderstatus(org.kie.api.task.model.Status... status)Add one or more statuses as a criteria to the queryTaskSummaryQueryBuildersubject(String... subject)Add one or more subjects as a criteria to the queryTaskSummaryQueryBuildersubTaskStrategy(SubTasksStrategy... subTasksStrategy)Add one or more (task) sub-task-strategies as a criteria to the queryTaskSummaryQueryBuildertaskId(long... taskId)Add one or more task ids as a criteria to the queryTaskSummaryQueryBuildertaskIdRange(Long taskIdMin, Long taskIdMax)Specify an inclusive range of (task) ids to use as a criteriaTaskSummaryQueryBuildertaskParentId(long... taskParentId)Add one or more (task) parent ids as a criteria to the queryTaskSummaryQueryBuildertaskType(String... taskType)Add one or more (task) types as a criteria to the queryTaskSummaryQueryBuildervariableName(String... varName)Add one or moreTaskVariablenames as a criteria to the queryTaskSummaryQueryBuildervariableValue(String... varValue)Add one or moreTaskVariablevalues as a criteria to the queryTaskSummaryQueryBuilderworkItemId(long... workItemId)Add one or more work item ids as a criteria to the query-
Methods inherited from interface org.kie.internal.query.ExtendedParametrizedQueryBuilder
build, endGroup, newGroup
-
Methods inherited from interface org.kie.internal.query.ParametrizedQueryBuilder
and, clear, equals, intersect, like, maxResults, offset, or, regex, union
-
Methods inherited from interface org.kie.internal.runtime.manager.audit.query.ProcessIdQueryBuilder
processId
-
Methods inherited from interface org.kie.internal.query.ProcessInstanceIdQueryBuilder
processInstanceId, processInstanceIdRange
-
-
-
-
Method Detail
-
activationTime
TaskSummaryQueryBuilder activationTime(Date... activationTime)
Add one or more activation times as a criteria to the query- Parameters:
activationTime- one or moreDatevalues- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
activationTimeRange
TaskSummaryQueryBuilder activationTimeRange(Date activationTimeMin, Date activationTimeMax)
Specify an inclusive range of (task) activation-time dates to use as a criteria If the lower or upper end of the range is given as null, then an open-ended range using the non-null range end is used as the criteria- Parameters:
activationTimeMin- the minimal (lower) date to use in the rangeactivationTimeMax- the max (upper) date to use in the range- Returns:
- The current query builder instance
-
actualOwner
TaskSummaryQueryBuilder actualOwner(String... actualOwnerUserId)
Add one or more (actual) task owner ids as a criteria to the query- Parameters:
actualOwnerUserId-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
archived
TaskSummaryQueryBuilder archived(boolean archived)
Add whether or not the task is archived as a criteria to the query- Parameters:
archived- a boolean- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
createdBy
TaskSummaryQueryBuilder createdBy(String... createdById)
Add one or more initiator user ids as a criteria to the query The initiator is also the user who created the task.- Parameters:
createdById-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
createdOn
TaskSummaryQueryBuilder createdOn(Date... createdOnDate)
Add one or more creation dates as a criteria to the query- Parameters:
createdOnDate- one or moreDatevalues- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
createdOnRange
TaskSummaryQueryBuilder createdOnRange(Date createdOnMin, Date createdOnMax)
Specify an inclusive range of (task) creation dates to use as a criteria If the lower or upper end of the range is given as null, then an open-ended range using the non-null range end is used as the criteria- Parameters:
createdOnMin- the minimal (lower) date to use in the rangecreatedOnMax- the max (upper) date to use in the range- Returns:
- The current query builder instance
-
deploymentId
TaskSummaryQueryBuilder deploymentId(String... deploymentId)
Add one or more deployment ids as a criteria to the query- Parameters:
deploymentId-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
description
TaskSummaryQueryBuilder description(String... description)
Add one or more descriptions as a criteria to the query- Parameters:
description- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
expirationTime
TaskSummaryQueryBuilder expirationTime(Date... expirationTime)
Add one or more expiration times as a criteria to the query- Parameters:
expirationTime- one or moreDatevalues- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
expirationTimeRange
TaskSummaryQueryBuilder expirationTimeRange(Date expirationTimeMin, Date expirationTimeMax)
Specify an inclusive range of (task) expiration-time dates to use as a criteria If the lower or upper end of the range is given as null, then an open-ended range using the non-null range end is used as the criteria- Parameters:
expirationTimeMin- the minimal (lower) date to use in the rangeexpirationTimeMax- the max (upper) date to use in the range- Returns:
- The current query builder instance
-
formName
TaskSummaryQueryBuilder formName(String... formName)
Add one or more (task) form names as a criteria to the query- Parameters:
formName- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
name
TaskSummaryQueryBuilder name(String... name)
Add one or more (task) names as a criteria to the query- Parameters:
name- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
processSessionId
TaskSummaryQueryBuilder processSessionId(long... processSessionId)
Add one or more work item ids as a criteria to the query- Parameters:
processSessionId- one or more longs- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
skippable
TaskSummaryQueryBuilder skippable(boolean skippable)
Add whether or not the task is skippable as a criteria to the query- Parameters:
skippable- a boolean- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
status
TaskSummaryQueryBuilder status(org.kie.api.task.model.Status... status)
Add one or more statuses as a criteria to the query- Parameters:
status-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
subject
TaskSummaryQueryBuilder subject(String... subject)
Add one or more subjects as a criteria to the query- Parameters:
subject- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
subTaskStrategy
TaskSummaryQueryBuilder subTaskStrategy(SubTasksStrategy... subTasksStrategy)
Add one or more (task) sub-task-strategies as a criteria to the query- Parameters:
subTasksStrategy- one or moreSubTasksStrategyvalues- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
taskId
TaskSummaryQueryBuilder taskId(long... taskId)
Add one or more task ids as a criteria to the query- Parameters:
taskId-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
taskIdRange
TaskSummaryQueryBuilder taskIdRange(Long taskIdMin, Long taskIdMax)
Specify an inclusive range of (task) ids to use as a criteria If the lower or upper end of the range is given as null, then an open-ended range using the non-null range end is used as the criteria- Parameters:
taskIdMin- the minimal (lower) date to use in the rangetaskIdMax- the max (upper) date to use in the range- Returns:
- The current query builder instance
-
taskParentId
TaskSummaryQueryBuilder taskParentId(long... taskParentId)
Add one or more (task) parent ids as a criteria to the query- Parameters:
taskParentId- one or more longs- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
taskType
TaskSummaryQueryBuilder taskType(String... taskType)
Add one or more (task) types as a criteria to the query- Parameters:
taskType- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
workItemId
TaskSummaryQueryBuilder workItemId(long... workItemId)
Add one or more work item ids as a criteria to the query- Parameters:
workItemId- one or more longs- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
priority
TaskSummaryQueryBuilder priority(int... priority)
Add one or more priorities as a criteria to the query- Parameters:
priority- one or more ints- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
businessAdmin
TaskSummaryQueryBuilder businessAdmin(String... businessAdminId)
Add one or more business administrator (user) ids as a criteria to the query- Parameters:
businessAdminId- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
potentialOwner
TaskSummaryQueryBuilder potentialOwner(String... potentialOwnerId)
Add one or more potential owner ids as a criteria to the query- Parameters:
potentialOwnerId-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
stakeHolder
TaskSummaryQueryBuilder stakeHolder(String... stakeHolderId)
Add one or more stake holder (user) ids as a criteria to the query- Parameters:
stakeHolderId- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
variableName
TaskSummaryQueryBuilder variableName(String... varName)
Add one or moreTaskVariablenames as a criteria to the query- Parameters:
varName- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
variableValue
TaskSummaryQueryBuilder variableValue(String... varValue)
Add one or moreTaskVariablevalues as a criteria to the query- Parameters:
varValue- one or more strings- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
ascending
TaskSummaryQueryBuilder ascending(TaskSummaryQueryBuilder.OrderBy orderBy)
Order the results in ascending order by the given parameter results are ordered by default by task id.- Parameters:
orderBy-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
descending
TaskSummaryQueryBuilder descending(TaskSummaryQueryBuilder.OrderBy orderBy)
Order the results in descending order by the given parameter results are ordered by default by task id.- Parameters:
orderBy-- Returns:
- the current
TaskSummaryQueryBuilderinstance
-
-