cancel
Showing results for 
Search instead for 
Did you mean: 

search tasks

jonlee
Champ in-the-making
Champ in-the-making
I use taskService to search tasks, like:
List<Task> tasks = 
         taskService.createTaskQuery()
            .taskCandidateUser(actorId)
            .list();
but how to make a distinction different types document, just like financial report, leave request, and expense report.
use instance variables?
2 REPLIES 2

jbarrez
Star Contributor
Star Contributor
The task query has methods to filter based on variables.

jonlee
Champ in-the-making
Champ in-the-making
thanks