Package | Description |
---|---|
org.jboss.as.controller.client.helpers.standalone |
Convenience API built on top of the
core management API
to make it easier to perform common management tasks against a single standalone JBoss Application Server instance. |
Modifier and Type | Interface and Description |
---|---|
interface |
AddDeploymentPlanBuilder
Extension of
DeploymentPlanBuilder that exposes
directives that are only applicable following an add directive. |
interface |
InitialDeploymentPlanBuilder
Extension of
DeploymentPlanBuilder that exposes additional methods meant
to be used at the initial stages of the building process, when directives that
pertain to the entire plan can be applied. |
interface |
ReplaceDeploymentPlanBuilder
Extension of
DeploymentPlanBuilder that exposes
directives that are only applicable following a replace directive. |
interface |
UndeployDeploymentPlanBuilder
Extension of
DeploymentPlanBuilder that exposes
directives that are only applicable following an undeploy directive. |
Modifier and Type | Method and Description |
---|---|
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.removeContenFromDeployment(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.withRollback()
Deprecated.
rollback is the default behavior for a deployment plan and doesn't need to be enabled
|
DeploymentPlanBuilder |
InitialDeploymentPlanBuilder.withShutdown()
Indicates actions specified subsequent to this call should be organized
around a full server shutdown.
|
Copyright © 2021 JBoss by Red Hat. All rights reserved.