Package com.atlassian.bamboo.deployments
Interface CustomPreDeploymentAction
-
- All Superinterfaces:
BambooPluginModule
- All Known Implementing Classes:
DummyPreDeploymentAction
@ExperimentalApi public interface CustomPreDeploymentAction extends BambooPluginModule
A custom pre deployment task that is executed on theExecutableBuildAgent
, just before actual deployment execution on environment. Any exception thrown or errors added to theDeploymentContext
will cause the deployment to fail.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(@NotNull DeploymentContext deploymentContext)
Execute the pre deployment task
-
-
-
Method Detail
-
execute
void execute(@NotNull @NotNull DeploymentContext deploymentContext)
Execute the pre deployment task- Parameters:
deploymentContext
-
-
-