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 |
addClasspathResource(String resource) |
DeploymentBuilder |
addInputStream(String resourceName,
InputStream inputStream) |
DeploymentBuilder |
addModelInstance(String resourceName,
BpmnModelInstance modelInstance) |
DeploymentBuilder |
addString(String resourceName,
String text) |
DeploymentBuilder |
addZipInputStream(ZipInputStream zipInputStream) |
Deployment |
deploy()
Deploys all provided sources to the process engine.
|
DeploymentBuilder |
enableDuplicateFiltering()
Deprecated.
|
DeploymentBuilder |
enableDuplicateFiltering(boolean deployChangedOnly)
Check the resources for duplicates in the set of previous deployments.
|
Collection<String> |
getResourceNames() |
DeploymentBuilder |
name(String name)
Gives the deployment the given name.
|
DeploymentBuilder addInputStream(String resourceName, InputStream inputStream)
DeploymentBuilder addClasspathResource(String resource)
DeploymentBuilder addString(String resourceName, String text)
DeploymentBuilder addModelInstance(String resourceName, BpmnModelInstance modelInstance)
DeploymentBuilder addZipInputStream(ZipInputStream zipInputStream)
DeploymentBuilder name(String name)
@Deprecated 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. If any resource of this deployment is different to the existing resources, all resources are re-deployed.
Deprecated: use enableDuplicateFiltering(boolean)
DeploymentBuilder enableDuplicateFiltering(boolean deployChangedOnly)
deployChangedOnly
.deployChangedOnly
- determines whether only those resources should be
deployed that have changed from the previous versions of the deployment.
If false, all of the resources are re-deployed if any resource differs.DeploymentBuilder activateProcessDefinitionsOn(Date date)
Deployment deploy()
Collection<String> getResourceNames()
Copyright © 2018. All rights reserved.