Interface DeploymentContext


  • public interface DeploymentContext
    DeploymentContext represents context that is available during deployment and stitch transformation.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.xebialabs.deployit.plugin.api.udm.Deployed<?,​?> getCurrentDeployed()
      Returns current deployed.
      com.xebialabs.deployit.plugin.api.udm.DeployedApplication getCurrentDeployedApplication()
      Returns current deployed application.
      com.xebialabs.deployit.plugin.api.udm.Deployed<?,​?> getDeployed()
      Returns deployed for deployment.
      com.xebialabs.deployit.plugin.api.udm.DeployedApplication getDeployedApplication()
      Returns deployed application for deployment.
      com.xebialabs.deployit.plugin.api.udm.Deployed<?,​?> getPreviousDeployed()
      Returns deployed from previous deployment.
      com.xebialabs.deployit.plugin.api.udm.DeployedApplication getPreviousDeployedApplication()
      Returns previously deployed application.
    • Method Detail

      • getDeployed

        com.xebialabs.deployit.plugin.api.udm.Deployed<?,​?> getDeployed()
        Returns deployed for deployment.
        Returns:
        deployed that is being deployed.
      • getPreviousDeployed

        com.xebialabs.deployit.plugin.api.udm.Deployed<?,​?> getPreviousDeployed()
        Returns deployed from previous deployment.
        Returns:
        deployed that was deployed before this deployment.
      • getCurrentDeployed

        com.xebialabs.deployit.plugin.api.udm.Deployed<?,​?> getCurrentDeployed()
        Returns current deployed.
        Returns:
        deployed that is currently being deployed (may be different than getDeployed for rollback action).
      • getDeployedApplication

        com.xebialabs.deployit.plugin.api.udm.DeployedApplication getDeployedApplication()
        Returns deployed application for deployment.
        Returns:
        deployed application that is being deployed.
      • getPreviousDeployedApplication

        com.xebialabs.deployit.plugin.api.udm.DeployedApplication getPreviousDeployedApplication()
        Returns previously deployed application.
        Returns:
        deployed application that was deployed in previous deployment.
      • getCurrentDeployedApplication

        com.xebialabs.deployit.plugin.api.udm.DeployedApplication getCurrentDeployedApplication()
        Returns current deployed application.
        Returns:
        deployed application that is currently being deployed (may be different than getDeployedApplication for rollback action).