Uses of Interface
org.camunda.bpm.engine.repository.DeploymentBuilder

Packages that use DeploymentBuilder
org.camunda.bpm.application   
org.camunda.bpm.engine Public API of the camunda BPM 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 Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: 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.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.repository   
org.camunda.bpm.engine.repository Classes related to the RepositoryService
 

Uses of DeploymentBuilder in org.camunda.bpm.application
 

Methods in org.camunda.bpm.application with parameters of type DeploymentBuilder
 void ProcessApplicationInterface.createDeployment(String processArchiveName, DeploymentBuilder deploymentBuilder)
          Override this method in order to programmatically add resources to the deployment created by this process application.
 void AbstractProcessApplication.createDeployment(String processArchiveName, DeploymentBuilder deploymentBuilder)
           
 

Uses of DeploymentBuilder in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return DeploymentBuilder
 DeploymentBuilder RepositoryService.createDeployment()
          Starts creating a new deployment
 

Uses of DeploymentBuilder in org.camunda.bpm.engine.impl
 

Methods in org.camunda.bpm.engine.impl that return DeploymentBuilder
 DeploymentBuilder RepositoryServiceImpl.createDeployment()
           
 

Uses of DeploymentBuilder in org.camunda.bpm.engine.impl.repository
 

Classes in org.camunda.bpm.engine.impl.repository that implement DeploymentBuilder
 class DeploymentBuilderImpl
           
 class ProcessApplicationDeploymentBuilderImpl
           
 

Methods in org.camunda.bpm.engine.impl.repository that return DeploymentBuilder
 DeploymentBuilder DeploymentBuilderImpl.activateProcessDefinitionsOn(Date date)
           
 DeploymentBuilder DeploymentBuilderImpl.addClasspathResource(String resource)
           
 DeploymentBuilder DeploymentBuilderImpl.addInputStream(String resourceName, InputStream inputStream)
           
 DeploymentBuilder DeploymentBuilderImpl.addModelInstance(String resourceName, org.camunda.bpm.model.bpmn.BpmnModelInstance modelInstance)
           
 DeploymentBuilder DeploymentBuilderImpl.addString(String resourceName, String text)
           
 DeploymentBuilder DeploymentBuilderImpl.addZipInputStream(ZipInputStream zipInputStream)
           
 DeploymentBuilder DeploymentBuilderImpl.enableDuplicateFiltering()
           
 DeploymentBuilder DeploymentBuilderImpl.enableDuplicateFiltering(boolean deployChangedOnly)
           
 DeploymentBuilder DeploymentBuilderImpl.name(String name)
           
 

Uses of DeploymentBuilder in org.camunda.bpm.engine.repository
 

Subinterfaces of DeploymentBuilder in org.camunda.bpm.engine.repository
 interface ProcessApplicationDeploymentBuilder
          Builder for a ProcessApplication deployment
 

Methods in org.camunda.bpm.engine.repository that return DeploymentBuilder
 DeploymentBuilder DeploymentBuilder.activateProcessDefinitionsOn(Date date)
          Sets the date on which the process definitions contained in this deployment will be activated.
 DeploymentBuilder DeploymentBuilder.addClasspathResource(String resource)
           
 DeploymentBuilder DeploymentBuilder.addInputStream(String resourceName, InputStream inputStream)
           
 DeploymentBuilder DeploymentBuilder.addModelInstance(String resourceName, org.camunda.bpm.model.bpmn.BpmnModelInstance modelInstance)
           
 DeploymentBuilder DeploymentBuilder.addString(String resourceName, String text)
           
 DeploymentBuilder DeploymentBuilder.addZipInputStream(ZipInputStream zipInputStream)
           
 DeploymentBuilder DeploymentBuilder.enableDuplicateFiltering()
          Deprecated. 
 DeploymentBuilder DeploymentBuilder.enableDuplicateFiltering(boolean deployChangedOnly)
          Check the resources for duplicates in the set of previous deployments.
 DeploymentBuilder DeploymentBuilder.name(String name)
          Gives the deployment the given name.
 



Copyright © 2015 camunda services GmbH. All rights reserved.