public static enum DeploymentAction.Type extends Enum<DeploymentAction.Type>
Enum Constant and Description |
---|
ADD
Add content to the deployment content repository.
|
ADD_CONTENT
Add content to an exploded deployment in content repository.
|
DEPLOY
Deploy content into the runtime, without replacing existing content.
|
EXPLODE
Explode a deployment content in the content repository.
|
FULL_REPLACE
Add new content to the deployment content repository, replace
existing content of the same name in the runtime, and remove the
replaced content from the deployment content repository.
|
REDEPLOY
Undeploy existing content from the runtime and deploy it again.
|
REMOVE
Remove content from the deployment content repository.
|
REMOVE_CONTENT
Remove content from an exploded deployment in the content repository.
|
REPLACE
Replace existing content in the runtime.
|
UNDEPLOY
Undeploy content from the runtime.
|
Modifier and Type | Method and Description |
---|---|
static DeploymentAction.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentAction.Type ADD
public static final DeploymentAction.Type ADD_CONTENT
public static final DeploymentAction.Type DEPLOY
public static final DeploymentAction.Type EXPLODE
added to the content repository
.public static final DeploymentAction.Type REPLACE
added to the content repository
.public static final DeploymentAction.Type FULL_REPLACE
ADD
, UNDEPLOY
, DEPLOY
,
REMOVE
sequence where the new content has the same name
as the content being replaced.public static final DeploymentAction.Type UNDEPLOY
public static final DeploymentAction.Type REDEPLOY
public static final DeploymentAction.Type REMOVE
undeployed from all
runtimes
.public static final DeploymentAction.Type REMOVE_CONTENT
undeployed from all
runtimes
.public static DeploymentAction.Type[] values()
for (DeploymentAction.Type c : DeploymentAction.Type.values()) System.out.println(c);
public static DeploymentAction.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021 JBoss by Red Hat. All rights reserved.