Uses of Interface
org.jbpm.api.ProcessDefinitionQuery

Packages that use ProcessDefinitionQuery
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
 

Uses of ProcessDefinitionQuery in org.jbpm.api
 

Methods in org.jbpm.api that return ProcessDefinitionQuery
 ProcessDefinitionQuery RepositoryService.createProcessDefinitionQuery()
          create a query for process definitions
 ProcessDefinitionQuery ProcessDefinitionQuery.deploymentId(java.lang.String deploymentId)
          select only process definitions within the given deployment
 ProcessDefinitionQuery ProcessDefinitionQuery.notSuspended()
          select only process definitions that are not suspended
 ProcessDefinitionQuery ProcessDefinitionQuery.orderAsc(java.lang.String property)
          order selected process definitions ascending for certain properties
 ProcessDefinitionQuery ProcessDefinitionQuery.orderDesc(java.lang.String property)
          order selected process definitions descending for certain properties
 ProcessDefinitionQuery ProcessDefinitionQuery.page(int firstResult, int maxResults)
          select a specific page in the result set
 ProcessDefinitionQuery ProcessDefinitionQuery.processDefinitionId(java.lang.String processDefinitionId)
          select only the process definition with the given id
 ProcessDefinitionQuery ProcessDefinitionQuery.processDefinitionKey(java.lang.String key)
          select only process definitions with the given key
 ProcessDefinitionQuery ProcessDefinitionQuery.processDefinitionName(java.lang.String name)
          select only process definitions with an exact match for the given name
 ProcessDefinitionQuery ProcessDefinitionQuery.processDefinitionNameLike(java.lang.String name)
          select only process definitions with a name like the given name (name can include % signs to act as wildcard))
 ProcessDefinitionQuery ProcessDefinitionQuery.suspended()
          select only suspended process definitions
 



Copyright © 2009 JBoss, a division of Red Hat. All Rights Reserved.