Uses of Interface
org.activiti.engine.repository.DeploymentBuilder
-
Packages that use DeploymentBuilder 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.impl.repository org.activiti.engine.repository Classes related to theRepositoryService. -
-
Uses of DeploymentBuilder in org.activiti.engine
Methods in org.activiti.engine that return DeploymentBuilder Modifier and Type Method Description DeploymentBuilderRepositoryService. createDeployment()Starts creating a new deployment -
Uses of DeploymentBuilder in org.activiti.engine.impl
Methods in org.activiti.engine.impl that return DeploymentBuilder Modifier and Type Method Description DeploymentBuilderRepositoryServiceImpl. createDeployment() -
Uses of DeploymentBuilder in org.activiti.engine.impl.repository
Classes in org.activiti.engine.impl.repository that implement DeploymentBuilder Modifier and Type Class Description classDeploymentBuilderImplMethods in org.activiti.engine.impl.repository that return DeploymentBuilder Modifier and Type Method Description DeploymentBuilderDeploymentBuilderImpl. activateProcessDefinitionsOn(java.util.Date date)DeploymentBuilderDeploymentBuilderImpl. addBpmnModel(java.lang.String resourceName, org.activiti.bpmn.model.BpmnModel bpmnModel)DeploymentBuilderDeploymentBuilderImpl. addBytes(java.lang.String resourceName, byte[] bytes)DeploymentBuilderDeploymentBuilderImpl. addClasspathResource(java.lang.String resource)DeploymentBuilderDeploymentBuilderImpl. addInputStream(java.lang.String resourceName, java.io.InputStream inputStream)DeploymentBuilderDeploymentBuilderImpl. addInputStream(java.lang.String resourceName, org.springframework.core.io.Resource resource)DeploymentBuilderDeploymentBuilderImpl. addString(java.lang.String resourceName, java.lang.String text)DeploymentBuilderDeploymentBuilderImpl. addZipInputStream(java.util.zip.ZipInputStream zipInputStream)DeploymentBuilderDeploymentBuilderImpl. category(java.lang.String category)DeploymentBuilderDeploymentBuilderImpl. deploymentProperty(java.lang.String propertyKey, java.lang.Object propertyValue)DeploymentBuilderDeploymentBuilderImpl. disableBpmnValidation()DeploymentBuilderDeploymentBuilderImpl. disableSchemaValidation()DeploymentBuilderDeploymentBuilderImpl. enableDuplicateFiltering()DeploymentBuilderDeploymentBuilderImpl. key(java.lang.String key)DeploymentBuilderDeploymentBuilderImpl. name(java.lang.String name)DeploymentBuilderDeploymentBuilderImpl. setProjectManifest(org.activiti.core.common.project.model.ProjectManifest projectManifest)DeploymentBuilderDeploymentBuilderImpl. tenantId(java.lang.String tenantId) -
Uses of DeploymentBuilder in org.activiti.engine.repository
Methods in org.activiti.engine.repository that return DeploymentBuilder Modifier and Type Method Description DeploymentBuilderDeploymentBuilder. activateProcessDefinitionsOn(java.util.Date date)Sets the date on which the process definitions contained in this deployment will be activated.DeploymentBuilderDeploymentBuilder. addBpmnModel(java.lang.String resourceName, org.activiti.bpmn.model.BpmnModel bpmnModel)DeploymentBuilderDeploymentBuilder. addBytes(java.lang.String resourceName, byte[] bytes)DeploymentBuilderDeploymentBuilder. addClasspathResource(java.lang.String resource)DeploymentBuilderDeploymentBuilder. addInputStream(java.lang.String resourceName, java.io.InputStream inputStream)DeploymentBuilderDeploymentBuilder. addInputStream(java.lang.String resourceName, org.springframework.core.io.Resource resource)DeploymentBuilderDeploymentBuilder. addString(java.lang.String resourceName, java.lang.String text)DeploymentBuilderDeploymentBuilder. addZipInputStream(java.util.zip.ZipInputStream zipInputStream)DeploymentBuilderDeploymentBuilder. category(java.lang.String category)Gives the deployment the given category.DeploymentBuilderDeploymentBuilder. deploymentProperty(java.lang.String propertyKey, java.lang.Object propertyValue)Allows to add a property to thisDeploymentBuilderthat influences the deployment.DeploymentBuilderDeploymentBuilder. disableBpmnValidation()If called, no validation that the process definition is executable on the engine will be done against the process definition.DeploymentBuilderDeploymentBuilder. disableSchemaValidation()If called, no XML schema validation against the BPMN 2.0 XSD.DeploymentBuilderDeploymentBuilder. enableDuplicateFiltering()If set, this deployment will be compared to any previous deployment.DeploymentBuilderDeploymentBuilder. key(java.lang.String key)Gives the deployment the given key.DeploymentBuilderDeploymentBuilder. name(java.lang.String name)Gives the deployment the given name.DeploymentBuilderDeploymentBuilder. setProjectManifest(org.activiti.core.common.project.model.ProjectManifest projectManifest)DeploymentBuilderDeploymentBuilder. tenantId(java.lang.String tenantId)Gives the deployment the given tenant id.
-