Enum Class DeploymentStatus

java.lang.Object
java.lang.Enum<DeploymentStatus>
org.openspaces.admin.pu.DeploymentStatus
All Implemented Interfaces:
Serializable, Comparable<DeploymentStatus>, java.lang.constant.Constable

public enum DeploymentStatus extends Enum<DeploymentStatus>
Deployment status indicates a ProcessingUnit deployment.
Author:
kimchy
  • Enum Constant Details

    • NA

      public static final DeploymentStatus NA
      Deployment status is not available.
    • UNDEPLOYED

      public static final DeploymentStatus UNDEPLOYED
      Indicates the Processing Unit is not deployed
    • SCHEDULED

      public static final DeploymentStatus SCHEDULED
      Indicates the Processing Unit is scheduled for deployment
    • DEPLOYED

      public static final DeploymentStatus DEPLOYED
      Indicates the Processing Unit is deployed
    • BROKEN

      public static final DeploymentStatus BROKEN
      Indicates the Processing Unit is deployed and is broken, where all required services are not available
    • COMPROMISED

      public static final DeploymentStatus COMPROMISED
      Indicates the Processing Unit is deployed and is compromised, where some specified services are not available
    • INTACT

      public static final DeploymentStatus INTACT
      Indicates the Processing Unit is deployed and is intact, where all specified services are available
  • Method Details

    • values

      public static DeploymentStatus[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DeploymentStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null