Interface DeploymentActionsCompleteBuilder
-
- All Superinterfaces:
DeploymentPlanBuilder
- All Known Subinterfaces:
AddDeploymentPlanBuilder,DeployDeploymentPlanBuilder,RemoveDeploymentPlanBuilder,ReplaceDeploymentPlanBuilder,UndeployDeploymentPlanBuilder
public interface DeploymentActionsCompleteBuilder extends DeploymentPlanBuilder
Variant of aDeploymentPlanBuilderthat exposes directives that signal indicate the completion of the phase of establishing the set ofDeploymentActions that comprise aDeploymentSetPlanand the beginning of the phase of specifying how those actions should be applied to server groups.- Author:
- Brian Stansberry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerGroupDeploymentPlanBuildertoServerGroup(String serverGroupName)Indicates that the current set ofdeployment actionscomprise aDeploymentSetPlanand should be applied to a server group.
-
-
-
Method Detail
-
toServerGroup
ServerGroupDeploymentPlanBuilder toServerGroup(String serverGroupName)
Indicates that the current set ofdeployment actionscomprise aDeploymentSetPlanand should be applied to a server group. Once this method is invoked, no further actions will be included in theDeploymentSetPlan.Any subsequent
add,remove,deploy,replaceorundeploybuilder operations will signal the start of a newDeploymentSetPlan.- Parameters:
serverGroupName- the name of the server group. Cannot benull- Returns:
- a builder that can continue building the overall deployment plan
-
-