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.repository |
Classes related to the
RepositoryService . |
Modifier and Type | Method and Description |
---|---|
DeploymentBuilder |
RepositoryService.createDeployment()
Starts creating a new deployment
|
Modifier and Type | Method and Description |
---|---|
DeploymentBuilder |
DeploymentBuilder.activateProcessDefinitionsOn(Date date)
Sets the date on which the process definitions contained in this deployment
will be activated.
|
DeploymentBuilder |
DeploymentBuilder.addBpmnModel(String resourceName,
org.activiti.bpmn.model.BpmnModel bpmnModel) |
DeploymentBuilder |
DeploymentBuilder.addClasspathResource(String resource) |
DeploymentBuilder |
DeploymentBuilder.addInputStream(String resourceName,
InputStream inputStream) |
DeploymentBuilder |
DeploymentBuilder.addString(String resourceName,
String text) |
DeploymentBuilder |
DeploymentBuilder.addZipInputStream(ZipInputStream zipInputStream) |
DeploymentBuilder |
DeploymentBuilder.category(String category)
Gives the deployment the given category.
|
DeploymentBuilder |
DeploymentBuilder.disableBpmnValidation()
If called, no validation that the process definition is executable on the engine
will be done against the process definition.
|
DeploymentBuilder |
DeploymentBuilder.disableSchemaValidation()
If called, no XML schema validation against the BPMN 2.0 XSD.
|
DeploymentBuilder |
DeploymentBuilder.enableDuplicateFiltering()
If set, this deployment will be compared to any previous deployment.
|
DeploymentBuilder |
DeploymentBuilder.name(String name)
Gives the deployment the given name.
|
DeploymentBuilder |
DeploymentBuilder.tenantId(String tenantId)
Gives the deployment the given tenant id.
|
Copyright © 2016 Alfresco. All rights reserved.