Interface InitialDeploymentPlanBuilder
-
- All Superinterfaces:
DeploymentPlanBuilder,InitialDeploymentSetBuilder
public interface InitialDeploymentPlanBuilder extends InitialDeploymentSetBuilder
Variant of aDeploymentPlanBuilderthat is meant to be used at the initial stages of the building process, when directives that pertain to the entire plan can be applied.- Author:
- Brian Stansberry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InitialDeploymentSetBuilderwithGracefulShutdown(long timeout, TimeUnit timeUnit)Indicates actions specified subsequent to this call should be organized around a full graceful server shutdown and restart.InitialDeploymentSetBuilderwithoutSingleServerRollback()Indicates that on a given server alldeploy,undeployorreplaceoperations associated with the deployment set should not be rolled back in case of a failure in any of them.InitialDeploymentSetBuilderwithRollbackAcrossGroups()Indicates that the actions in the plan need to be rolled back across any single given server group, then it should be rolled back across all server groups.InitialDeploymentSetBuilderwithShutdown()Indicates actions specified subsequent to this call should be organized around a full server restart.
-
-
-
Method Detail
-
withRollbackAcrossGroups
InitialDeploymentSetBuilder withRollbackAcrossGroups()
Indicates that the actions in the plan need to be rolled back across any single given server group, then it should be rolled back across all server groups.- Returns:
- a builder that can continue building the overall deployment plan
-
withoutSingleServerRollback
InitialDeploymentSetBuilder withoutSingleServerRollback()
Indicates that on a given server alldeploy,undeployorreplaceoperations associated with the deployment set should not be rolled back in case of a failure in any of them.- Specified by:
withoutSingleServerRollbackin interfaceInitialDeploymentSetBuilder- Returns:
- a builder that can continue building the overall deployment plan
-
withGracefulShutdown
InitialDeploymentSetBuilder withGracefulShutdown(long timeout, TimeUnit timeUnit)
Indicates actions specified subsequent to this call should be organized around a full graceful server shutdown and restart. The server will attempt to shut itself down gracefully, waiting for in-process work to complete before shutting down. See the full JBoss AS documentation for details on what "waiting for in-process work to complete" means.For any
deployorreplaceactions, the new content will not be deployed until the server is restarted. For anyundeployorreplaceactions, the old content will be undeployed as part of normal server shutdown processing.- Specified by:
withGracefulShutdownin interfaceInitialDeploymentSetBuilder- Parameters:
timeout- maximum amount of time the graceful shutdown should wait for existing work to complete before completing the shutdowntimeUnit-TimeUnitin whichtimeoutis expressed- Returns:
- a builder that can continue building the overall deployment plan
-
withShutdown
InitialDeploymentSetBuilder withShutdown()
Indicates actions specified subsequent to this call should be organized around a full server restart. For anydeployorreplaceactions, the new content will not be deployed until the server is restarted. For anyundeployorreplaceactions, the old content will be undeployed as part of normal server shutdown processing.- Specified by:
withShutdownin interfaceInitialDeploymentSetBuilder- Returns:
- a builder that can continue building the overall deployment plan
-
-