public static enum DeploymentTracing.AppStage extends Enum<DeploymentTracing.AppStage>
| Enum Constant and Description |
|---|
CLASS_SCANNING
Collect information on annotated types.
|
CLEANUP
Cleanup deletes data of inactive application.
|
CONTAINER_START
First start of a subsystem handling specific container.
|
CREATE_CLASSLOADER
Creation of application classloader.
|
CREATE_DEPLOYMENT_CONTEXT
Creation of deployment context.
|
DETERMINE_APP_NAME
Determine name of an app.
|
INITIALIZE
Final step before starting an application.
|
LOAD
Load the application code and prepare runtime structures.
|
OPENING_ARCHIVE
Activities related to reading contents of application archive.
|
PREPARE
Preparation of server components that will handle the application and validation of application.
|
PROCESS_EVENTS
Processing of event hooks.
|
REGISTRATION
Update domain configuration with information on new application.
|
START
Starting application.
|
SWITCH_VERSIONS
Coordinate version switch.
|
VALIDATE_TARGET
Validate whether deployment is fit for specified target.
|
| Modifier and Type | Method and Description |
|---|---|
static DeploymentTracing.AppStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentTracing.AppStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentTracing.AppStage OPENING_ARCHIVE
public static final DeploymentTracing.AppStage VALIDATE_TARGET
command validates correctness of the command
parameter, component registry validates possibility of deployment to target instance(s).public static final DeploymentTracing.AppStage CREATE_DEPLOYMENT_CONTEXT
public static final DeploymentTracing.AppStage PROCESS_EVENTS
EventTypes.name of the event being sent and synchronously processed
by respective hooks.public static final DeploymentTracing.AppStage DETERMINE_APP_NAME
public static final DeploymentTracing.AppStage CLEANUP
public static final DeploymentTracing.AppStage SWITCH_VERSIONS
public static final DeploymentTracing.AppStage PREPARE
public static final DeploymentTracing.AppStage INITIALIZE
public static final DeploymentTracing.AppStage START
public static final DeploymentTracing.AppStage REGISTRATION
public static final DeploymentTracing.AppStage CLASS_SCANNING
public static final DeploymentTracing.AppStage CONTAINER_START
public static final DeploymentTracing.AppStage CREATE_CLASSLOADER
public static final DeploymentTracing.AppStage LOAD
public static DeploymentTracing.AppStage[] values()
for (DeploymentTracing.AppStage c : DeploymentTracing.AppStage.values()) System.out.println(c);
public static DeploymentTracing.AppStage 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 © 2019. All rights reserved.