com.bea.dsp.management.deployment.dataspace
Enum DeploymentStatus

java.lang.Object
  extended by java.lang.Enum<DeploymentStatus>
      extended by com.bea.dsp.management.deployment.dataspace.DeploymentStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DeploymentStatus>

public enum DeploymentStatus
extends java.lang.Enum<DeploymentStatus>


Enum Constant Summary
STATE_ACTIVE
          Activated and available to all users.
STATE_ADMIN
          Activated but only accessible by administrator users.
STATE_FAILED
          Configured but not deployed.
STATE_NEW
          Configured but not deployed.
STATE_NOT_DEPLOYED
          Not deployed.
STATE_PREPARED
          Created and ready for activation.
STATE_RETIRED
          Configured but not deployed.
STATE_UPDATE_PENDING
          Running and being updated.
UNKNOWN
          Catch all.
 
Method Summary
static DeploymentStatus typedValueOf(java.lang.String deploymentState)
           
static DeploymentStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DeploymentStatus[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STATE_NEW

public static final DeploymentStatus STATE_NEW
Configured but not deployed. Transient state.


STATE_FAILED

public static final DeploymentStatus STATE_FAILED
Configured but not deployed. This is the state of an application after it fails during dynamic deployment activate or during static deployment startup.


STATE_RETIRED

public static final DeploymentStatus STATE_RETIRED
Configured but not deployed.


STATE_PREPARED

public static final DeploymentStatus STATE_PREPARED
Created and ready for activation. This is the state of an application after it is created or deactivated.


STATE_ADMIN

public static final DeploymentStatus STATE_ADMIN
Activated but only accessible by administrator users.


STATE_ACTIVE

public static final DeploymentStatus STATE_ACTIVE
Activated and available to all users.


STATE_UPDATE_PENDING

public static final DeploymentStatus STATE_UPDATE_PENDING
Running and being updated. Transient state.


STATE_NOT_DEPLOYED

public static final DeploymentStatus STATE_NOT_DEPLOYED
Not deployed.


UNKNOWN

public static final DeploymentStatus UNKNOWN
Catch all.

Method Detail

values

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

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

valueOf

public static DeploymentStatus valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

typedValueOf

public static DeploymentStatus typedValueOf(java.lang.String deploymentState)


Copyright © 2007 BEA Systems Inc. All Rights Reserved.