|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.camunda.bpm.container.impl.spi.DeploymentOperation
public class DeploymentOperation
A DeploymentOperation allows bundling multiple deployment steps into a composite operation that succeeds or fails atomically.
The DeploymentOperation is composed of a list of individual steps (
DeploymentOperationStep
). Each step may or may not install new
services into the container. If one of the steps fails, the operation makes
sure that
DeploymentOperationStep.cancelOperationStep(DeploymentOperation)
method.
Nested Class Summary | |
---|---|
static class |
DeploymentOperation.DeploymentOperationBuilder
|
Field Summary | |
---|---|
protected Map<String,Object> |
attachments
a list of attachments allows to pass state from one operation to another |
protected DeploymentOperationStep |
currentStep
|
protected List<String> |
installedServices
the list of services installed by this operation. |
protected boolean |
isRollbackOnFailure
|
protected String |
name
the name of this composite operation |
protected PlatformServiceContainer |
serviceContainer
the service container |
protected List<DeploymentOperationStep> |
steps
the list of steps that make up this composite operation |
protected List<DeploymentOperationStep> |
successfulSteps
a list of steps that completed successfully |
Constructor Summary | |
---|---|
DeploymentOperation(String name,
PlatformServiceContainer container,
List<DeploymentOperationStep> steps)
|
Method Summary | ||
---|---|---|
void |
addAttachment(String name,
Object value)
|
|
void |
addStep(DeploymentOperationStep step)
Add a new atomic step to the composite operation. |
|
void |
execute()
|
|
|
getAttachment(String name)
|
|
List<String> |
getInstalledServices()
|
|
PlatformServiceContainer |
getServiceContainer()
|
|
protected void |
rollbackOperation()
|
|
void |
serviceAdded(String serviceName)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final String name
protected final PlatformServiceContainer serviceContainer
protected final List<DeploymentOperationStep> steps
protected final List<DeploymentOperationStep> successfulSteps
protected List<String> installedServices
rollbackOperation()
must make sure
all these services are removed if the operation fails.
protected Map<String,Object> attachments
protected boolean isRollbackOnFailure
protected DeploymentOperationStep currentStep
Constructor Detail |
---|
public DeploymentOperation(String name, PlatformServiceContainer container, List<DeploymentOperationStep> steps)
Method Detail |
---|
public <S> S getAttachment(String name)
public void addAttachment(String name, Object value)
public void addStep(DeploymentOperationStep step)
public void serviceAdded(String serviceName)
public PlatformServiceContainer getServiceContainer()
public void execute()
protected void rollbackOperation()
public List<String> getInstalledServices()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |