Class DeploymentOperation.DeploymentOperationBuilder
- java.lang.Object
-
- org.camunda.bpm.container.impl.spi.DeploymentOperation.DeploymentOperationBuilder
-
- Enclosing class:
- DeploymentOperation
public static class DeploymentOperation.DeploymentOperationBuilder extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected PlatformServiceContainer
container
protected Map<String,Object>
initialAttachments
protected boolean
isUndeploymentOperation
protected String
name
protected List<DeploymentOperationStep>
steps
-
Constructor Summary
Constructors Constructor Description DeploymentOperationBuilder(PlatformServiceContainer container, String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeploymentOperation.DeploymentOperationBuilder
addAttachment(String name, Object value)
DeploymentOperation.DeploymentOperationBuilder
addStep(DeploymentOperationStep step)
DeploymentOperation.DeploymentOperationBuilder
addSteps(Collection<DeploymentOperationStep> steps)
void
execute()
DeploymentOperation.DeploymentOperationBuilder
setUndeploymentOperation()
-
-
-
Field Detail
-
container
protected PlatformServiceContainer container
-
name
protected String name
-
isUndeploymentOperation
protected boolean isUndeploymentOperation
-
steps
protected List<DeploymentOperationStep> steps
-
-
Constructor Detail
-
DeploymentOperationBuilder
public DeploymentOperationBuilder(PlatformServiceContainer container, String name)
-
-
Method Detail
-
addStep
public DeploymentOperation.DeploymentOperationBuilder addStep(DeploymentOperationStep step)
-
addSteps
public DeploymentOperation.DeploymentOperationBuilder addSteps(Collection<DeploymentOperationStep> steps)
-
addAttachment
public DeploymentOperation.DeploymentOperationBuilder addAttachment(String name, Object value)
-
setUndeploymentOperation
public DeploymentOperation.DeploymentOperationBuilder setUndeploymentOperation()
-
execute
public void execute()
-
-