com.xebialabs.deployit.plugin.api.deployment.specification
Interface Delta


public interface Delta

The 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 Summary
 Deployed<?,?> getDeployed()
           
 Operation getOperation()
           
 Deployed<?,?> getPrevious()
           
 

Method Detail

getOperation

Operation getOperation()

getPrevious

Deployed<?,?> getPrevious()

getDeployed

Deployed<?,?> getDeployed()