Interface TemplateDeploymentBuilder
- All Known Implementing Classes:
TemplateDeploymentBuilderImpl
public interface TemplateDeploymentBuilder
Builder for creating new deployments, similar to the action deployment builder.
A builder instance can be obtained through
TemplateRepositoryService.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:
- Tijs Rademakers, Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionaddClasspathResource
(String resource) addInputStream
(String resourceName, InputStream inputStream) addTemplateModel
(String resourceName, TemplateModel templateModel) addTemplateVariationModel
(String resourceName, TemplateVariationModel templateVariationModel) addZipInputStream
(ZipInputStream zipInputStream) Gives the deployment the given category.deploy()
Deploys all provided sources to the CMMN engine.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
-
addTemplateModel
-
addTemplateVariationModel
TemplateDeploymentBuilder addTemplateVariationModel(String resourceName, TemplateVariationModel templateVariationModel) -
addZipInputStream
-
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
TemplateDeploymentBuilder 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. -
deploy
TemplateDeployment deploy()Deploys all provided sources to the CMMN engine.
-