Package org.flowable.engine.repository
Interface DeploymentBuilder
public interface DeploymentBuilder
Builder for creating new deployments.
A builder instance can be obtained through
RepositoryService.createDeployment()
.
Multiple resources can be added to one deployment before calling the deploy()
operation.
After deploying, no more changes can be made to the returned deployment and the builder instance can be disposed.- Author:
- Tom Baeyens, Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionSets the date on which the process definitions contained in this deployment will be activated.addBpmnModel
(String resourceName, org.flowable.bpmn.model.BpmnModel bpmnModel) addClasspathResource
(String resource) addInputStream
(String resourceName, InputStream inputStream) addZipInputStream
(ZipInputStream zipInputStream) Gives the deployment the given category.deploy()
Deploys all provided sources to the process engine.deploymentProperty
(String propertyKey, Object propertyValue) Allows to add a property to thisDeploymentBuilder
that influences the deployment.If called, no validation that the process definition is executable on the engine will be done against the process definition.If called, no XML schema validation against the BPMN 2.0 XSD.If set, this deployment will be compared to any previous deployment.Gives the deployment the given key.Gives the deployment the given name.parentDeploymentId
(String parentDeploymentId) Gives the deployment the given parent deployment id.Gives the deployment the given tenant id.
-
Method Details
-
addInputStream
-
addClasspathResource
-
addString
-
addBytes
-
addZipInputStream
-
addBpmnModel
-
disableSchemaValidation
DeploymentBuilder disableSchemaValidation()If called, no XML schema validation against the BPMN 2.0 XSD. Not recommended in general. -
disableBpmnValidation
DeploymentBuilder disableBpmnValidation()If called, no validation that the process definition is executable on the engine will be done against the process definition. Not recommended in general. -
name
Gives the deployment the given name. -
category
Gives the deployment the given category. -
key
Gives the deployment the given key. -
parentDeploymentId
Gives the deployment the given parent deployment id. -
tenantId
Gives the deployment the given tenant id. -
enableDuplicateFiltering
DeploymentBuilder enableDuplicateFiltering()If set, this deployment will be compared to any previous deployment. This means that every (non-generated) resource will be compared with the provided resources of this deployment. -
activateProcessDefinitionsOn
Sets the date on which the process definitions contained in this deployment will be activated. This means that all process definitions will be deployed as usual, but they will be suspended from the start until the given activation date. -
deploymentProperty
Allows to add a property to thisDeploymentBuilder
that influences the deployment. -
deploy
Deployment deploy()Deploys all provided sources to the process engine.
-