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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe process version is already deployed in the stage/zone combination.The deployment failed because another process has a BPMN with the same process definition key.The FUNCTIONAL_ANALYSIS stage cannot be deployed.Deployment failed because of invalid status.The deployment failed because there were duplicate process definition keys used in the model.Die Stufe konnte nicht abgeschlossen werden, weil keine Prozessparameterdefinition hinterlegt ist.The deployment failed with a technical (unknown) error.The deployment was successful. -
Method Summary
Modifier and TypeMethodDescriptionstatic DeployResponse.StatusReturns the enum constant of this class with the specified name.static DeployResponse.Status[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
The deployment was successful. #deploymentId is set. #duplicateKeys will contain values if there were previous versions already deployed. -
FAIL_INVALID_STAGE
The FUNCTIONAL_ANALYSIS stage cannot be deployed. -
FAIL_INVALID_STATUS
Deployment failed because of invalid 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
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
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
Die Stufe konnte nicht abgeschlossen werden, weil keine Prozessparameterdefinition hinterlegt ist. Ergänzen Sie zuerst eine Prozessparameterdefinition. -
FAIL_TECHNICAL_ERROR
The deployment failed with a technical (unknown) error. #message is populated with the exception message.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-