Package com.flowable.core.content.api
Interface DocumentDeploymentBuilder
- All Known Implementing Classes:
DocumentDeploymentBuilderImpl
public interface DocumentDeploymentBuilder
Builder for creating new deployments, similar to the document deployment builder.
A builder instance can be obtained through
DocumentRepositoryService.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 Type Method Description DocumentDeploymentBuilderaddBytes(java.lang.String resourceName, byte[] bytes)DocumentDeploymentBuilderaddClasspathResource(java.lang.String resource)DocumentDeploymentBuilderaddInputStream(java.lang.String resourceName, java.io.InputStream inputStream)DocumentDeploymentBuilderaddString(java.lang.String resourceName, java.lang.String text)DocumentDeploymentBuilderaddZipInputStream(java.util.zip.ZipInputStream zipInputStream)DocumentDeploymentBuildercategory(java.lang.String category)Gives the deployment the given category.DocumentDeploymentdeploy()Deploys all provided sources to the CMMN engine.DocumentDeploymentBuilderenableDuplicateFiltering()If set, this deployment will be compared to any previous deployment.DocumentDeploymentBuilderkey(java.lang.String key)Gives the deployment the given key.DocumentDeploymentBuildername(java.lang.String name)Gives the deployment the given name.DocumentDeploymentBuilderparentDeploymentId(java.lang.String parentDeploymentId)Gives the deployment the given parent deployment id.DocumentDeploymentBuildertenantId(java.lang.String tenantId)Gives the deployment the given tenant id.
-
Method Details
-
addInputStream
DocumentDeploymentBuilder addInputStream(java.lang.String resourceName, java.io.InputStream inputStream) -
addClasspathResource
-
addString
-
addBytes
-
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
DocumentDeploymentBuilder 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
DocumentDeployment deploy()Deploys all provided sources to the CMMN engine.
-