Package org.activiti.engine.repository
Interface DeploymentBuilder
-
- All Known Implementing Classes:
DeploymentBuilderImpl
@Internal public interface DeploymentBuilder
Builder for creating new deployments. A builder instance can be obtained throughRepositoryService.createDeployment(). Multiple resources can be added to one deployment before calling thedeploy()operation. After deploying, no more changes can be made to the returned deployment and the builder instance can be disposed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentBuilderactivateProcessDefinitionsOn(java.util.Date date)Sets the date on which the process definitions contained in this deployment will be activated.DeploymentBuilderaddBpmnModel(java.lang.String resourceName, org.activiti.bpmn.model.BpmnModel bpmnModel)DeploymentBuilderaddBytes(java.lang.String resourceName, byte[] bytes)DeploymentBuilderaddClasspathResource(java.lang.String resource)DeploymentBuilderaddInputStream(java.lang.String resourceName, java.io.InputStream inputStream)DeploymentBuilderaddInputStream(java.lang.String resourceName, org.springframework.core.io.Resource resource)DeploymentBuilderaddString(java.lang.String resourceName, java.lang.String text)DeploymentBuilderaddZipInputStream(java.util.zip.ZipInputStream zipInputStream)DeploymentBuildercategory(java.lang.String category)Gives the deployment the given category.Deploymentdeploy()Deploys all provided sources to the Activiti engine.DeploymentBuilderdeploymentProperty(java.lang.String propertyKey, java.lang.Object propertyValue)Allows to add a property to thisDeploymentBuilderthat influences the deployment.DeploymentBuilderdisableBpmnValidation()If called, no validation that the process definition is executable on the engine will be done against the process definition.DeploymentBuilderdisableSchemaValidation()If called, no XML schema validation against the BPMN 2.0 XSD.DeploymentBuilderenableDuplicateFiltering()If set, this deployment will be compared to any previous deployment.DeploymentBuilderkey(java.lang.String key)Gives the deployment the given key.DeploymentBuildername(java.lang.String name)Gives the deployment the given name.DeploymentBuildersetProjectManifest(org.activiti.core.common.project.model.ProjectManifest projectManifest)DeploymentBuildertenantId(java.lang.String tenantId)Gives the deployment the given tenant id.
-
-
-
Method Detail
-
addInputStream
DeploymentBuilder addInputStream(java.lang.String resourceName, java.io.InputStream inputStream)
-
addInputStream
DeploymentBuilder addInputStream(java.lang.String resourceName, org.springframework.core.io.Resource resource)
-
addClasspathResource
DeploymentBuilder addClasspathResource(java.lang.String resource)
-
addString
DeploymentBuilder addString(java.lang.String resourceName, java.lang.String text)
-
addBytes
DeploymentBuilder addBytes(java.lang.String resourceName, byte[] bytes)
-
addZipInputStream
DeploymentBuilder addZipInputStream(java.util.zip.ZipInputStream zipInputStream)
-
addBpmnModel
DeploymentBuilder addBpmnModel(java.lang.String resourceName, org.activiti.bpmn.model.BpmnModel bpmnModel)
-
setProjectManifest
DeploymentBuilder setProjectManifest(org.activiti.core.common.project.model.ProjectManifest projectManifest)
-
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
DeploymentBuilder name(java.lang.String name)
Gives the deployment the given name.
-
category
DeploymentBuilder category(java.lang.String category)
Gives the deployment the given category.
-
key
DeploymentBuilder key(java.lang.String key)
Gives the deployment the given key.
-
tenantId
DeploymentBuilder tenantId(java.lang.String 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
DeploymentBuilder activateProcessDefinitionsOn(java.util.Date date)
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
DeploymentBuilder deploymentProperty(java.lang.String propertyKey, java.lang.Object propertyValue)
Allows to add a property to thisDeploymentBuilderthat influences the deployment.
-
deploy
Deployment deploy()
Deploys all provided sources to the Activiti engine.
-
-