Enum Class DeployResponse.Status

java.lang.Object
java.lang.Enum<DeployResponse.Status>
de.seitenbau.serviceportal.prozesspipeline.model.DeployResponse.Status
All Implemented Interfaces:
Serializable, Comparable<DeployResponse.Status>, Constable
Enclosing class:
DeployResponse

public static enum DeployResponse.Status extends Enum<DeployResponse.Status>
  • Enum Constant Details

    • SUCCESS

      public static final DeployResponse.Status SUCCESS
      The deployment was successful. #deploymentId is set. #duplicateKeys will contain values if there were previous versions already deployed.
    • FAIL_INVALID_STAGE

      public static final DeployResponse.Status FAIL_INVALID_STAGE
      The FUNCTIONAL_ANALYSIS stage cannot be deployed.
    • FAIL_INVALID_STATUS

      public static final DeployResponse.Status FAIL_INVALID_STATUS
      Deployment failed because of invalid status.
    • FAIL_ALREADY_DEPLOYED

      public static final DeployResponse.Status FAIL_ALREADY_DEPLOYED
      The process version is already deployed in the stage/zone combination. #deploymentId is set with the current deployment Id.
    • FAIL_LOCAL_DUPLICATE_PROCESS_DEFINITION_KEY

      public static final DeployResponse.Status FAIL_LOCAL_DUPLICATE_PROCESS_DEFINITION_KEY
      The deployment failed because there were duplicate process definition keys used in the model. #message is populated with the exception message.
    • FAIL_GLOBAL_DUPLICATE_PROCESS_DEFINITION_KEY

      public static final DeployResponse.Status FAIL_GLOBAL_DUPLICATE_PROCESS_DEFINITION_KEY
      The deployment failed because another process has a BPMN with the same process definition key. #globalDuplicates is populated with the duplicates found in other models.
    • FAIL_PROCESS_PARAMETER_DEFINITIONS_MISSING

      public static final DeployResponse.Status FAIL_PROCESS_PARAMETER_DEFINITIONS_MISSING
      Die Stufe konnte nicht abgeschlossen werden, weil keine Prozessparameterdefinition hinterlegt ist. Ergänzen Sie zuerst eine Prozessparameterdefinition.
    • FAIL_TECHNICAL_ERROR

      public static final DeployResponse.Status FAIL_TECHNICAL_ERROR
      The deployment failed with a technical (unknown) error. #message is populated with the exception message.
  • Method Details

    • values

      public static DeployResponse.Status[] 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 DeployResponse.Status 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