Interface DeploymentSetPlanResult
public interface DeploymentSetPlanResult
Encapsulates the results of executing a
DeploymentSetPlan.- Author:
- Brian Stansberry
-
Method Summary
Modifier and TypeMethodDescriptionGets the results of theDeploymentActions associated with the deployment set plan.Gets the unique id of the deployment set plan.Gets the deployment set plan that lead to this result.Gets the results for each server group.
-
Method Details
-
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
-