public static enum WebApplicationEvent.State extends Enum<WebApplicationEvent.State>
WAITING state. These are states as seen by observers
of the deployment process, not as seen by the WAB itself (which may use some more internal states, like
waiting for WebContainer service reference or waiting for undeployment of
an application with conflicting context path (possibly including Virtual Hosts config).| Enum Constant and Description |
|---|
DEPLOYED |
DEPLOYING |
FAILED |
UNDEPLOYED |
UNDEPLOYING |
WAITING |
| Modifier and Type | Method and Description |
|---|---|
String |
getTopic() |
static WebApplicationEvent.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebApplicationEvent.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebApplicationEvent.State DEPLOYING
public static final WebApplicationEvent.State DEPLOYED
public static final WebApplicationEvent.State UNDEPLOYING
public static final WebApplicationEvent.State UNDEPLOYED
public static final WebApplicationEvent.State FAILED
public static final WebApplicationEvent.State WAITING
public static WebApplicationEvent.State[] values()
for (WebApplicationEvent.State c : WebApplicationEvent.State.values()) System.out.println(c);
public static WebApplicationEvent.State 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 nullpublic String getTopic()
Copyright © 2006–2024 OPS4J - Open Participation Software for Java. All rights reserved.