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(java.lang.String resourceName, byte[] bytes)ServiceDeploymentBuilderaddClasspathResource(java.lang.String resource)ServiceDeploymentBuilderaddInputStream(java.lang.String resourceName, java.io.InputStream inputStream)ServiceDeploymentBuilderaddString(java.lang.String resourceName, java.lang.String text)ServiceDeploymentBuilderaddZipInputStream(java.util.zip.ZipInputStream zipInputStream)ServiceDeploymentBuildercategory(java.lang.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(java.lang.String key)Gives the deployment the given key.ServiceDeploymentBuildername(java.lang.String name)Gives the deployment the given name.ServiceDeploymentBuilderparentDeploymentId(java.lang.String parentDeploymentId)Gives the deployment the given parent deployment id.ServiceDeploymentBuildertenantId(java.lang.String tenantId)Gives the deployment the given tenant id.
-
-
-
Method Detail
-
addInputStream
ServiceDeploymentBuilder addInputStream(java.lang.String resourceName, java.io.InputStream inputStream)
-
addClasspathResource
ServiceDeploymentBuilder addClasspathResource(java.lang.String resource)
-
addString
ServiceDeploymentBuilder addString(java.lang.String resourceName, java.lang.String text)
-
addBytes
ServiceDeploymentBuilder addBytes(java.lang.String resourceName, byte[] bytes)
-
addZipInputStream
ServiceDeploymentBuilder addZipInputStream(java.util.zip.ZipInputStream zipInputStream)
-
name
ServiceDeploymentBuilder name(java.lang.String name)
Gives the deployment the given name.
-
category
ServiceDeploymentBuilder category(java.lang.String category)
Gives the deployment the given category.
-
key
ServiceDeploymentBuilder key(java.lang.String key)
Gives the deployment the given key.
-
parentDeploymentId
ServiceDeploymentBuilder parentDeploymentId(java.lang.String parentDeploymentId)
Gives the deployment the given parent deployment id.
-
tenantId
ServiceDeploymentBuilder tenantId(java.lang.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.
-
-