Interface ServiceDeploymentBuilder
-
- All Known Implementing Classes:
ServiceDeploymentBuilderImpl
public interface ServiceDeploymentBuilderBuilder 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 ServiceDeploymentBuilderaddBytes(String resourceName, byte[] bytes)ServiceDeploymentBuilderaddClasspathResource(String resource)ServiceDeploymentBuilderaddInputStream(String resourceName, InputStream inputStream)ServiceDeploymentBuilderaddString(String resourceName, String text)ServiceDeploymentBuilderaddZipInputStream(ZipInputStream zipInputStream)ServiceDeploymentBuildercategory(String category)Gives the deployment the given category.ServiceDeploymentdeploy()Deploys all provided sources to the CMMN engine.ServiceDeploymentBuilderenableDuplicateFiltering()If set, this deployment will be compared to any previous deployment.ServiceDeploymentBuilderkey(String key)Gives the deployment the given key.ServiceDeploymentBuildername(String name)Gives the deployment the given name.ServiceDeploymentBuilderparentDeploymentId(String parentDeploymentId)Gives the deployment the given parent deployment id.ServiceDeploymentBuildertenantId(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.
-
-