Interface DeploymentSetPlanResult
-
public interface DeploymentSetPlanResultEncapsulates the results of executing aDeploymentSetPlan.- Author:
- Brian Stansberry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<UUID,DeploymentActionResult>getDeploymentActionResults()Gets the results of theDeploymentActions associated with the deployment set plan.UUIDgetDeploymentSetId()Gets the unique id of the deployment set plan.DeploymentSetPlangetDeploymentSetPlan()Gets the deployment set plan that lead to this result.Map<String,ServerGroupDeploymentPlanResult>getServerGroupResults()Gets the results for each server group.
-
-
-
Method Detail
-
getDeploymentSetId
UUID getDeploymentSetId()
Gets the unique id of the deployment set plan.- Returns:
- the id. Will not be
null
-
getDeploymentSetPlan
DeploymentSetPlan getDeploymentSetPlan()
Gets the deployment set plan that lead to this result.- Returns:
- the plan. Will not be
null
-
getServerGroupResults
Map<String,ServerGroupDeploymentPlanResult> getServerGroupResults()
Gets the results for each server group.- Returns:
- map of server group results, keyed by server group name
-
getDeploymentActionResults
Map<UUID,DeploymentActionResult> getDeploymentActionResults()
Gets the results of theDeploymentActions associated with the deployment set plan.- Returns:
- map of deployment action results, keyed by
deployment action id
-
-