org.jboss.managed.api
Enum ManagedDeployment.DeploymentPhase

java.lang.Object
  extended by java.lang.Enum<ManagedDeployment.DeploymentPhase>
      extended by org.jboss.managed.api.ManagedDeployment.DeploymentPhase
All Implemented Interfaces:
Serializable, Comparable<ManagedDeployment.DeploymentPhase>
Enclosing interface:
ManagedDeployment

Deprecated. - no replacement, to be dropped

@Deprecated
public static enum ManagedDeployment.DeploymentPhase
extends Enum<ManagedDeployment.DeploymentPhase>

The phase of deployment


Enum Constant Summary
APPLICATION
          Deprecated. Any deployment content to be loaded after the DEPLOYER phase
APPLICATION_TRANSIENT
          Deprecated. Any unversioned deployment content to be loaded after the APPLICATION phase
BOOTSTRAP
          Deprecated. A deployment loaded during the server bootstrap phase
DEPLOYER
          Deprecated. An mc/service deployment for a Deployer to be loaded after the BOOTSTRAP phase
 
Method Summary
static ManagedDeployment.DeploymentPhase valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static ManagedDeployment.DeploymentPhase[] values()
          Deprecated. Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BOOTSTRAP

public static final ManagedDeployment.DeploymentPhase BOOTSTRAP
Deprecated. 
A deployment loaded during the server bootstrap phase


DEPLOYER

public static final ManagedDeployment.DeploymentPhase DEPLOYER
Deprecated. 
An mc/service deployment for a Deployer to be loaded after the BOOTSTRAP phase


APPLICATION

public static final ManagedDeployment.DeploymentPhase APPLICATION
Deprecated. 
Any deployment content to be loaded after the DEPLOYER phase


APPLICATION_TRANSIENT

public static final ManagedDeployment.DeploymentPhase APPLICATION_TRANSIENT
Deprecated. 
Any unversioned deployment content to be loaded after the APPLICATION phase

Method Detail

values

public static ManagedDeployment.DeploymentPhase[] values()
Deprecated. 
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ManagedDeployment.DeploymentPhase c : ManagedDeployment.DeploymentPhase.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ManagedDeployment.DeploymentPhase valueOf(String name)
Deprecated. 
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2009 JBoss, a division of Red Hat, Inc.. All Rights Reserved.