Uses of Interface
org.activiti.engine.runtime.JobQuery
-
Packages that use JobQuery Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.runtime Classes related to theRuntimeService. -
-
Uses of JobQuery in org.activiti.engine
Methods in org.activiti.engine that return JobQuery Modifier and Type Method Description JobQueryManagementService. createJobQuery()Returns a new JobQuery implementation, that can be used to dynamically query the jobs. -
Uses of JobQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement JobQuery Modifier and Type Class Description classJobQueryImplMethods in org.activiti.engine.impl that return JobQuery Modifier and Type Method Description JobQueryManagementServiceImpl. createJobQuery()JobQueryJobQueryImpl. duedateHigherThan(java.util.Date date)JobQueryJobQueryImpl. duedateHigherThen(java.util.Date date)JobQueryJobQueryImpl. duedateHigherThenOrEquals(java.util.Date date)JobQueryJobQueryImpl. duedateLowerThan(java.util.Date date)JobQueryJobQueryImpl. duedateLowerThen(java.util.Date date)JobQueryJobQueryImpl. duedateLowerThenOrEquals(java.util.Date date)JobQueryJobQueryImpl. exceptionMessage(java.lang.String exceptionMessage)JobQueryJobQueryImpl. executable()JobQueryJobQueryImpl. jobId(java.lang.String jobId)JobQueryJobQueryImpl. jobTenantId(java.lang.String tenantId)JobQueryJobQueryImpl. jobTenantIdLike(java.lang.String tenantIdLike)JobQueryJobQueryImpl. jobWithoutTenantId()JobQueryJobQueryImpl. locked()JobQueryJobQueryImpl. messages()JobQueryJobQueryImpl. noRetriesLeft()JobQueryJobQueryImpl. orderByExecutionId()JobQueryJobQueryImpl. orderByJobDuedate()JobQueryJobQueryImpl. orderByJobId()JobQueryJobQueryImpl. orderByJobRetries()JobQueryJobQueryImpl. orderByProcessInstanceId()JobQueryJobQueryImpl. orderByTenantId()JobQueryJobQueryImpl. timers()JobQueryJobQueryImpl. unlocked()JobQueryJobQueryImpl. withException()JobQueryJobQueryImpl. withRetriesLeft() -
Uses of JobQuery in org.activiti.engine.runtime
Methods in org.activiti.engine.runtime that return JobQuery Modifier and Type Method Description JobQueryJobQuery. duedateHigherThan(java.util.Date date)Only select jobs where the duedate is higher then the given date.JobQueryJobQuery. duedateLowerThan(java.util.Date date)Only select jobs where the duedate is lower than the given date.JobQueryJobQuery. exceptionMessage(java.lang.String exceptionMessage)Only select jobs that failed due to an exception with the given message.JobQueryJobQuery. executionId(java.lang.String executionId)Only select jobs which exist for the given executionJobQueryJobQuery. jobId(java.lang.String jobId)Only select jobs with the given idJobQueryJobQuery. jobTenantId(java.lang.String tenantId)Only select jobs that have the given tenant id.JobQueryJobQuery. jobTenantIdLike(java.lang.String tenantIdLike)Only select jobs with a tenant id like the given one.JobQueryJobQuery. jobWithoutTenantId()Only select jobs that do not have a tenant id.JobQueryJobQuery. locked()Only return jobs that are locked (i.e.JobQueryJobQuery. messages()Only select jobs that are messages.JobQueryJobQuery. orderByExecutionId()Order by execution id (needs to be followed byQuery.asc()orQuery.desc()).JobQueryJobQuery. orderByJobDuedate()Order by duedate (needs to be followed byQuery.asc()orQuery.desc()).JobQueryJobQuery. orderByJobId()Order by job id (needs to be followed byQuery.asc()orQuery.desc()).JobQueryJobQuery. orderByJobRetries()Order by retries (needs to be followed byQuery.asc()orQuery.desc()).JobQueryJobQuery. orderByProcessInstanceId()Order by process instance id (needs to be followed byQuery.asc()orQuery.desc()).JobQueryJobQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).JobQueryJobQuery. processDefinitionId(java.lang.String processDefinitionid)Only select jobs which exist for the given process definition idJobQueryJobQuery. processInstanceId(java.lang.String processInstanceId)Only select jobs which exist for the given process instance.JobQueryJobQuery. timers()Only select jobs that are timers.JobQueryJobQuery. unlocked()Only return jobs that are not locked.JobQueryJobQuery. withException()Only select jobs that failed due to an exception.
-