Interface ServerDeploymentPlanResult
-
- All Known Implementing Classes:
DeploymentPlanResultImpl
public interface ServerDeploymentPlanResult
Encapsulates the results of executing aDeploymentPlan
.- Author:
- Brian Stansberry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerDeploymentActionResult
getDeploymentActionResult(UUID deploymentAction)
Gets the result of aDeploymentAction
action associated with the deployment set plan.UUID
getDeploymentPlanId()
Gets the unique id of the deployment plan.
-
-
-
Method Detail
-
getDeploymentPlanId
UUID getDeploymentPlanId()
Gets the unique id of the deployment plan.- Returns:
- the id. Will not be
null
-
getDeploymentActionResult
ServerDeploymentActionResult getDeploymentActionResult(UUID deploymentAction)
Gets the result of aDeploymentAction
action associated with the deployment set plan.- Parameters:
deploymentAction
- the id of the action- Returns:
- the result
-
-