public interface DeploymentBuilder
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.Modifier and Type | Method and Description |
---|---|
DeploymentBuilder |
activateProcessDefinitionsOn(Date date)
Sets the date on which the process definitions contained in this deployment will be activated.
|
DeploymentBuilder |
addBpmnModel(String resourceName,
org.activiti.bpmn.model.BpmnModel bpmnModel) |
DeploymentBuilder |
addBytes(String resourceName,
byte[] bytes) |
DeploymentBuilder |
addClasspathResource(String resource) |
DeploymentBuilder |
addInputStream(String resourceName,
InputStream inputStream) |
DeploymentBuilder |
addString(String resourceName,
String text) |
DeploymentBuilder |
addZipInputStream(ZipInputStream zipInputStream) |
DeploymentBuilder |
category(String category)
Gives the deployment the given category.
|
Deployment |
deploy()
Deploys all provided sources to the Activiti engine.
|
DeploymentBuilder |
deploymentProperty(String propertyKey,
Object propertyValue)
Allows to add a property to this
DeploymentBuilder that influences the deployment. |
DeploymentBuilder |
disableBpmnValidation()
If called, no validation that the process definition is executable on the engine will be done against the process definition.
|
DeploymentBuilder |
disableSchemaValidation()
If called, no XML schema validation against the BPMN 2.0 XSD.
|
DeploymentBuilder |
enableDuplicateFiltering()
If set, this deployment will be compared to any previous deployment.
|
DeploymentBuilder |
key(String key)
Gives the deployment the given key.
|
DeploymentBuilder |
name(String name)
Gives the deployment the given name.
|
DeploymentBuilder |
tenantId(String tenantId)
Gives the deployment the given tenant id.
|
DeploymentBuilder addInputStream(String resourceName, InputStream inputStream)
DeploymentBuilder addClasspathResource(String resource)
DeploymentBuilder addString(String resourceName, String text)
DeploymentBuilder addBytes(String resourceName, byte[] bytes)
DeploymentBuilder addZipInputStream(ZipInputStream zipInputStream)
DeploymentBuilder addBpmnModel(String resourceName, org.activiti.bpmn.model.BpmnModel bpmnModel)
DeploymentBuilder disableSchemaValidation()
DeploymentBuilder disableBpmnValidation()
DeploymentBuilder name(String name)
DeploymentBuilder category(String category)
DeploymentBuilder key(String key)
DeploymentBuilder tenantId(String tenantId)
DeploymentBuilder enableDuplicateFiltering()
DeploymentBuilder activateProcessDefinitionsOn(Date date)
DeploymentBuilder deploymentProperty(String propertyKey, Object propertyValue)
DeploymentBuilder
that influences the deployment.Deployment deploy()
Copyright © 2017 Alfresco. All rights reserved.