Interface Delta
- 
- All Superinterfaces:
- java.io.Serializable
 
 public interface Delta extends java.io.SerializableThe Delta specifies what will happen to a Deployed in a Deployment. if the operation == CREATE -> previous == null && deployed is set if the operation == UPDATE -> previous is set && deployed is set if the operation == DELETE -> previous is set && deployed == null if the operation == NOOP -> previous and deployed are set to the same value.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Deployed<? extends Deployable,? extends Container>getDeployed()java.util.List<java.lang.String>getIntermediateCheckpoints()When this Delta is generated as part of a rollback, this can be inspected to see which (intermediate) checkpoints were hit during the deployment.OperationgetOperation()Deployed<? extends Deployable,? extends Container>getPrevious()
 
- 
- 
- 
Method Detail- 
getOperationOperation getOperation() 
 - 
getPreviousDeployed<? extends Deployable,? extends Container> getPrevious() 
 - 
getDeployedDeployed<? extends Deployable,? extends Container> getDeployed() 
 - 
getIntermediateCheckpointsjava.util.List<java.lang.String> getIntermediateCheckpoints() When this Delta is generated as part of a rollback, this can be inspected to see which (intermediate) checkpoints were hit during the deployment. If this is not a rollback, this list will be empty.- Returns:
- The list of (intermediate) checkpoints hit during a deployment.
 
 
- 
 
-