Package | Description |
---|---|
org.activiti.engine |
Public API of the Activiti engine.
Typical usage of the API starts by the creation of a ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine , BPM and workflow operation
can be executed:RepositoryService : Manages Deployment s RuntimeService : For starting and searching ProcessInstance s TaskService : Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService : Used for managing User s,
Group s and the relations between themManagementService : Exposes engine admin and maintenance operations,
which have no relation to the runtime exection of business processesHistoryService : Exposes information about ongoing and past process instances.FormService : Access to form data and rendered forms for starting new process instances and completing tasks. |
org.activiti.engine.runtime |
Classes related to the
RuntimeService . |
Modifier and Type | Method and Description |
---|---|
SuspendedJobQuery |
ManagementService.createSuspendedJobQuery()
Returns a new SuspendedJobQuery implementation, that can be used to dynamically query the suspended jobs.
|
Modifier and Type | Method and Description |
---|---|
SuspendedJobQuery |
SuspendedJobQuery.duedateHigherThan(Date date)
Only select jobs where the duedate is higher then the given date.
|
SuspendedJobQuery |
SuspendedJobQuery.duedateLowerThan(Date date)
Only select jobs where the duedate is lower than the given date.
|
SuspendedJobQuery |
SuspendedJobQuery.exceptionMessage(String exceptionMessage)
Only select jobs that failed due to an exception with the given message.
|
SuspendedJobQuery |
SuspendedJobQuery.executable()
Only select jobs which are executable, ie.
|
SuspendedJobQuery |
SuspendedJobQuery.executionId(String executionId)
Only select jobs which exist for the given execution
|
SuspendedJobQuery |
SuspendedJobQuery.jobId(String jobId)
Only select jobs with the given id
|
SuspendedJobQuery |
SuspendedJobQuery.jobTenantId(String tenantId)
Only select jobs that have the given tenant id.
|
SuspendedJobQuery |
SuspendedJobQuery.jobTenantIdLike(String tenantIdLike)
Only select jobs with a tenant id like the given one.
|
SuspendedJobQuery |
SuspendedJobQuery.jobWithoutTenantId()
Only select jobs that do not have a tenant id.
|
SuspendedJobQuery |
SuspendedJobQuery.messages()
Only select jobs that are messages.
|
SuspendedJobQuery |
SuspendedJobQuery.noRetriesLeft()
Only select jobs which have no retries left
|
SuspendedJobQuery |
SuspendedJobQuery.orderByExecutionId()
Order by execution id (needs to be followed by
Query.asc() or Query.desc() ). |
SuspendedJobQuery |
SuspendedJobQuery.orderByJobDuedate()
Order by duedate (needs to be followed by
Query.asc() or Query.desc() ). |
SuspendedJobQuery |
SuspendedJobQuery.orderByJobId()
Order by job id (needs to be followed by
Query.asc() or Query.desc() ). |
SuspendedJobQuery |
SuspendedJobQuery.orderByJobRetries()
Order by retries (needs to be followed by
Query.asc() or Query.desc() ). |
SuspendedJobQuery |
SuspendedJobQuery.orderByProcessInstanceId()
Order by process instance id (needs to be followed by
Query.asc() or Query.desc() ). |
SuspendedJobQuery |
SuspendedJobQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc() ). |
SuspendedJobQuery |
SuspendedJobQuery.processDefinitionId(String processDefinitionid)
Only select jobs which exist for the given process definition id
|
SuspendedJobQuery |
SuspendedJobQuery.processInstanceId(String processInstanceId)
Only select jobs which exist for the given process instance.
|
SuspendedJobQuery |
SuspendedJobQuery.timers()
Only select jobs that are timers.
|
SuspendedJobQuery |
SuspendedJobQuery.withException()
Only select jobs that failed due to an exception.
|
SuspendedJobQuery |
SuspendedJobQuery.withRetriesLeft()
Only select jobs which have retries left
|
Copyright © 2017 Alfresco. All rights reserved.