Interface ServiceDeploymentBuilder
-
- All Known Implementing Classes:
ServiceDeploymentBuilderImpl
public interface ServiceDeploymentBuilder
Builder for creating new deployments, similar to the service deployment builder. A builder instance can be obtained throughServiceRegistryRepositoryService.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.- Author:
- Tijs Rademakers, Joram Barrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceDeploymentBuilder
addBytes(String resourceName, byte[] bytes)
ServiceDeploymentBuilder
addClasspathResource(String resource)
ServiceDeploymentBuilder
addInputStream(String resourceName, InputStream inputStream)
ServiceDeploymentBuilder
addString(String resourceName, String text)
ServiceDeploymentBuilder
addZipInputStream(ZipInputStream zipInputStream)
ServiceDeploymentBuilder
category(String category)
Gives the deployment the given category.ServiceDeployment
deploy()
Deploys all provided sources to the CMMN engine.ServiceDeploymentBuilder
enableDuplicateFiltering()
If set, this deployment will be compared to any previous deployment.ServiceDeploymentBuilder
key(String key)
Gives the deployment the given key.ServiceDeploymentBuilder
name(String name)
Gives the deployment the given name.ServiceDeploymentBuilder
parentDeploymentId(String parentDeploymentId)
Gives the deployment the given parent deployment id.ServiceDeploymentBuilder
tenantId(String tenantId)
Gives the deployment the given tenant id.
-
-
-
Method Detail
-
addInputStream
ServiceDeploymentBuilder addInputStream(String resourceName, InputStream inputStream)
-
addClasspathResource
ServiceDeploymentBuilder addClasspathResource(String resource)
-
addString
ServiceDeploymentBuilder addString(String resourceName, String text)
-
addBytes
ServiceDeploymentBuilder addBytes(String resourceName, byte[] bytes)
-
addZipInputStream
ServiceDeploymentBuilder addZipInputStream(ZipInputStream zipInputStream)
-
name
ServiceDeploymentBuilder name(String name)
Gives the deployment the given name.
-
category
ServiceDeploymentBuilder category(String category)
Gives the deployment the given category.
-
key
ServiceDeploymentBuilder key(String key)
Gives the deployment the given key.
-
parentDeploymentId
ServiceDeploymentBuilder parentDeploymentId(String parentDeploymentId)
Gives the deployment the given parent deployment id.
-
tenantId
ServiceDeploymentBuilder tenantId(String tenantId)
Gives the deployment the given tenant id.
-
enableDuplicateFiltering
ServiceDeploymentBuilder 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
ServiceDeployment deploy()
Deploys all provided sources to the CMMN engine.
-
-