Interface PolicyDeploymentBuilder
-
- All Known Implementing Classes:
PolicyDeploymentBuilderImpl
public interface PolicyDeploymentBuilderBuilder for creating new deployments, similar to the policy deployment builder. A builder instance can be obtained throughPolicyRepositoryService.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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PolicyDeploymentBuilderaddBytes(java.lang.String resourceName, byte[] bytes)PolicyDeploymentBuilderaddClasspathResource(java.lang.String resource)PolicyDeploymentBuilderaddInputStream(java.lang.String resourceName, java.io.InputStream inputStream)PolicyDeploymentBuilderaddString(java.lang.String resourceName, java.lang.String text)PolicyDeploymentBuilderaddZipInputStream(java.util.zip.ZipInputStream zipInputStream)PolicyDeploymentBuildercategory(java.lang.String category)Gives the deployment the given category.PolicyDeploymentdeploy()Deploys all provided sources to the CMMN engine.PolicyDeploymentBuilderenableDuplicateFiltering()If set, this deployment will be compared to any previous deployment.PolicyDeploymentBuilderkey(java.lang.String key)Gives the deployment the given key.PolicyDeploymentBuildername(java.lang.String name)Gives the deployment the given name.PolicyDeploymentBuilderparentDeploymentId(java.lang.String parentDeploymentId)Gives the deployment the given parent deployment id.PolicyDeploymentBuildertenantId(java.lang.String tenantId)Gives the deployment the given tenant id.
-
-
-
Method Detail
-
addInputStream
PolicyDeploymentBuilder addInputStream(java.lang.String resourceName, java.io.InputStream inputStream)
-
addClasspathResource
PolicyDeploymentBuilder addClasspathResource(java.lang.String resource)
-
addString
PolicyDeploymentBuilder addString(java.lang.String resourceName, java.lang.String text)
-
addBytes
PolicyDeploymentBuilder addBytes(java.lang.String resourceName, byte[] bytes)
-
addZipInputStream
PolicyDeploymentBuilder addZipInputStream(java.util.zip.ZipInputStream zipInputStream)
-
name
PolicyDeploymentBuilder name(java.lang.String name)
Gives the deployment the given name.
-
category
PolicyDeploymentBuilder category(java.lang.String category)
Gives the deployment the given category.
-
key
PolicyDeploymentBuilder key(java.lang.String key)
Gives the deployment the given key.
-
parentDeploymentId
PolicyDeploymentBuilder parentDeploymentId(java.lang.String parentDeploymentId)
Gives the deployment the given parent deployment id.
-
tenantId
PolicyDeploymentBuilder tenantId(java.lang.String tenantId)
Gives the deployment the given tenant id.
-
enableDuplicateFiltering
PolicyDeploymentBuilder 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
PolicyDeployment deploy()
Deploys all provided sources to the CMMN engine.
-
-