DeploymentPlanBuilder |
DeploymentPlanBuilder.addContentFileToDeployment(String deploymentName,
Map<String,Path> files) |
Indicates the content readable from the specified Path
should be added to the content repository.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.addContentToDeployment(String deploymentName,
Map<String,InputStream> contents) |
Indicates the content readable from the specified InputStream
should be added to the content repository.
|
DeploymentPlanBuilder |
AddDeploymentPlanBuilder.andDeploy() |
Indicates content that was added via an immediately preceding
add operation should be deployed.
|
DeploymentPlanBuilder |
ReplaceDeploymentPlanBuilder.andRemoveUndeployed() |
Indicates that deployment content that was undeployed via the preceding
replace action should be removed from the content repository.
|
DeploymentPlanBuilder |
UndeployDeploymentPlanBuilder.andRemoveUndeployed() |
Indicates that deployment content that was undeployed via the preceding
undeploy action should be removed from the content repository.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.deploy(String deploymentName) |
Indicates the specified deployment content should be deployed.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.explodeDeployment(String deploymentName) |
Indicates the deployment to be exploded.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.explodeDeploymentContent(String deploymentName,
String path) |
Indicates the deployment content to be exploded.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.redeploy(String deploymentName) |
Indicates the specified deployment content should be redeployed (i.e.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.remove(String deploymentName) |
Indicates the specified deployment content should be removed from the
content repository.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.removeContentFromDeployment(String deploymentName,
List<String> paths) |
Indicates the content readable from the specified targetPath should be removed from the deployment with the
specified name.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.replace(File file) |
Indicates the content of the specified file should be added to the content
repository and replace existing content of the same name.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.replace(String name,
File file) |
Indicates the content of the specified file should be added to the content
repository and replace existing content of the same name.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.replace(String name,
InputStream stream) |
Indicates the content readable from the specified InputStream
should be added to the content repository and replace existing
content of the same name.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.replace(String name,
String commonName,
InputStream stream) |
Indicates the content readable from the specified InputStream
should be added to the content repository and replace existing
content of the same name.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.replace(String name,
URL url) |
Indicates the content at the specified URL should be added to the content
repository and replace existing content of the same name.
|
DeploymentPlanBuilder |
DeploymentPlanBuilder.replace(URL url) |
Indicates the content at the specified URL should be added to the content
repository and replace existing content of the same name.
|
DeploymentPlanBuilder |
InitialDeploymentPlanBuilder.withGracefulShutdown(long timeout,
TimeUnit timeUnit) |
Indicates actions specified subsequent to this call should be organized
around a full graceful server shutdown.
|
DeploymentPlanBuilder |
InitialDeploymentPlanBuilder.withoutRollback() |
Indicates all deploy, undeploy, replace
or remove operations associated with the deployment plan
should not be rolled back in case of a failure in any of them.
|
DeploymentPlanBuilder |
InitialDeploymentPlanBuilder.withShutdown() |
Indicates actions specified subsequent to this call should be organized
around a full server shutdown.
|