Uses of Interface
org.jbpm.api.history.HistoryTaskQuery

Packages that use HistoryTaskQuery
org.jbpm.api the jBPM API, Start by creating a Configuration, build a ProcessEngine from that, and then you can find the workflow methods on the services like ExecutionService, TaskService
org.jbpm.api.history interfaces related to the HistoryService
 

Uses of HistoryTaskQuery in org.jbpm.api
 

Methods in org.jbpm.api that return HistoryTaskQuery
 HistoryTaskQuery HistoryService.createHistoryTaskQuery()
          search in history task information
 

Uses of HistoryTaskQuery in org.jbpm.api.history
 

Methods in org.jbpm.api.history that return HistoryTaskQuery
 HistoryTaskQuery HistoryTaskQuery.assignee(java.lang.String assignee)
          only select history tasks for the given assignee
 HistoryTaskQuery HistoryTaskQuery.executionId(java.lang.String executionId)
          only select history tasks within the given execution
 HistoryTaskQuery HistoryTaskQuery.orderAsc(java.lang.String property)
          order selected history tasks ascending for certain properties
 HistoryTaskQuery HistoryTaskQuery.orderDesc(java.lang.String property)
          order selected process definitions descending for certain properties
 HistoryTaskQuery HistoryTaskQuery.outcome(java.lang.String outcome)
          only select history tasks that have the given outcome
 HistoryTaskQuery HistoryTaskQuery.page(int firstResult, int maxResults)
          select a specific page in the result set
 HistoryTaskQuery HistoryTaskQuery.startedAfter(java.util.Date time)
          only select history tasks started after the given time
 HistoryTaskQuery HistoryTaskQuery.startedBefore(java.util.Date time)
          only select history tasks started before the given time
 HistoryTaskQuery HistoryTaskQuery.state(java.lang.String state)
          only select history tasks in the given state
 HistoryTaskQuery HistoryTaskQuery.taskId(java.lang.String taskId)
          only select the history task for the given id
 HistoryTaskQuery HistoryTaskQuery.tookLessThen(long durationInMillis)
          only select history tasks that took less then the given duration in milliseconds
 HistoryTaskQuery HistoryTaskQuery.tookLongerThen(long durationInMillis)
          only select history tasks that took longer then the given duration in milliseconds
 



Copyright © 2010 JBoss Community. All Rights Reserved.