Interface DeployProcessCommandStep1
- All Known Subinterfaces:
DeployProcessCommandStep1.DeployProcessCommandBuilderStep2
- All Known Implementing Classes:
DeployProcessCommandImpl
Deprecated.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Deprecated.since 8 for removal with 8.1, replaced byDeployResourceCommandStep1.DeployResourceCommandStep2
-
Method Summary
Modifier and TypeMethodDescriptionaddProcessModel
(BpmnModelInstance processDefinition, String resourceName) Deprecated.Add the given process to the deployment.addResourceBytes
(byte[] resourceBytes, String resourceName) Deprecated.Add the given resource to the deployment.addResourceFile
(String filename) Deprecated.Add the given resource to the deployment.addResourceFromClasspath
(String classpathResource) Deprecated.Add the given resource to the deployment.addResourceStream
(InputStream resourceStream, String resourceName) Deprecated.Add the given resource to the deployment.addResourceString
(String resourceString, Charset charset, String resourceName) Deprecated.Add the given resource to the deployment.addResourceStringUtf8
(String resourceString, String resourceName) Deprecated.Add the given resource to the deployment.
-
Method Details
-
addResourceBytes
DeployProcessCommandStep1.DeployProcessCommandBuilderStep2 addResourceBytes(byte[] resourceBytes, String resourceName) Deprecated.Add the given resource to the deployment.- Parameters:
resourceBytes
- the process resource as byte arrayresourceName
- the name of the resource (e.g. "process.bpmn")- Returns:
- the builder for this command. Call
invalid reference
#send()
-
addResourceString
DeployProcessCommandStep1.DeployProcessCommandBuilderStep2 addResourceString(String resourceString, Charset charset, String resourceName) Deprecated.Add the given resource to the deployment.- Parameters:
resourceString
- the process resource as Stringcharset
- the charset of the StringresourceName
- the name of the resource (e.g. "process.bpmn")- Returns:
- the builder for this command. Call
invalid reference
#send()
-
addResourceStringUtf8
DeployProcessCommandStep1.DeployProcessCommandBuilderStep2 addResourceStringUtf8(String resourceString, String resourceName) Deprecated.Add the given resource to the deployment.- Parameters:
resourceString
- the process resource as UTF-8-encoded StringresourceName
- the name of the resource (e.g. "process.bpmn")- Returns:
- the builder for this command. Call
invalid reference
#send()
-
addResourceStream
DeployProcessCommandStep1.DeployProcessCommandBuilderStep2 addResourceStream(InputStream resourceStream, String resourceName) Deprecated.Add the given resource to the deployment.- Parameters:
resourceStream
- the process resource as streamresourceName
- the name of the resource (e.g. "process.bpmn")- Returns:
- the builder for this command. Call
invalid reference
#send()
-
addResourceFromClasspath
DeployProcessCommandStep1.DeployProcessCommandBuilderStep2 addResourceFromClasspath(String classpathResource) Deprecated.Add the given resource to the deployment.- Parameters:
classpathResource
- the path of the process resource in the classpath (e.g. "wf/process.bpmn")- Returns:
- the builder for this command. Call
invalid reference
#send()
-
addResourceFile
Deprecated.Add the given resource to the deployment.- Parameters:
filename
- the absolute path of the process resource (e.g. "~/wf/process.bpmn")- Returns:
- the builder for this command. Call
invalid reference
#send()
-
addProcessModel
DeployProcessCommandStep1.DeployProcessCommandBuilderStep2 addProcessModel(BpmnModelInstance processDefinition, String resourceName) Deprecated.Add the given process to the deployment.- Parameters:
processDefinition
- the process as modelresourceName
- the name of the resource (e.g. "process.bpmn")- Returns:
- the builder for this command. Call
invalid reference
#send()
-
DeployResourceCommandStep1