public interface PlatformDeploymentBuilder
PlatformRepositoryService.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.Modifier and Type | Method and Description |
---|---|
PlatformDeploymentBuilder |
addBytes(String resourceName,
byte[] bytes) |
PlatformDeploymentBuilder |
addClasspathResource(String resource) |
PlatformDeploymentBuilder |
addInputStream(String resourceName,
InputStream inputStream) |
PlatformDeploymentBuilder |
addString(String resourceName,
String text) |
PlatformDeploymentBuilder |
addZipInputStream(ZipInputStream zipInputStream) |
PlatformDeploymentBuilder |
category(String category)
Gives the deployment the given category.
|
PlatformDeployment |
deploy()
Deploys all provided sources to the CMMN engine.
|
PlatformDeploymentBuilder |
enableDuplicateFiltering()
If set, this deployment will be compared to any previous deployment.
|
PlatformDeploymentBuilder |
key(String key)
Gives the deployment the given key.
|
PlatformDeploymentBuilder |
name(String name)
Gives the deployment the given name.
|
PlatformDeploymentBuilder |
parentDeploymentId(String parentDeploymentId)
Gives the deployment the given parent deployment id.
|
PlatformDeploymentBuilder |
tenantId(String tenantId)
Gives the deployment the given tenant id.
|
PlatformDeploymentBuilder addInputStream(String resourceName, InputStream inputStream)
PlatformDeploymentBuilder addClasspathResource(String resource)
PlatformDeploymentBuilder addString(String resourceName, String text)
PlatformDeploymentBuilder addBytes(String resourceName, byte[] bytes)
PlatformDeploymentBuilder addZipInputStream(ZipInputStream zipInputStream)
PlatformDeploymentBuilder name(String name)
PlatformDeploymentBuilder category(String category)
PlatformDeploymentBuilder key(String key)
PlatformDeploymentBuilder parentDeploymentId(String parentDeploymentId)
PlatformDeploymentBuilder tenantId(String tenantId)
PlatformDeploymentBuilder enableDuplicateFiltering()
PlatformDeployment deploy()