- [#24569] Added the phase DRAFT in the enum (also required for #24571)

This commit is contained in:
Francesco Mangiacrapa 2023-02-09 12:37:29 +01:00
parent 62ce92b371
commit acae9ffb77
3 changed files with 9 additions and 2 deletions

View File

@ -4,6 +4,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [v2.0.3-SNAPSHOT] - 2022-02-09
#### Enhancements
- [#24569] Added the phase DRAFT in the enum (also required for #24571)
## [v2.0.2] - 2022-02-03 ## [v2.0.2] - 2022-02-03
#### Enhancements #### Enhancements

View File

@ -10,7 +10,7 @@
<groupId>org.gcube.application</groupId> <groupId>org.gcube.application</groupId>
<artifactId>geoportal-data-common</artifactId> <artifactId>geoportal-data-common</artifactId>
<version>2.0.2</version> <version>2.0.3-SNAPSHOT</version>
<description>GeoPortal Data Common is common library used by GUI components developed for GeoNA</description> <description>GeoPortal Data Common is common library used by GUI components developed for GeoNA</description>
<scm> <scm>

View File

@ -9,7 +9,8 @@ package org.gcube.application.geoportalcommon.shared.geoportal;
*/ */
public enum WORKFLOW_PHASE { public enum WORKFLOW_PHASE {
PUBLISHED("Published"); //Should be always the last one PUBLISHED("Published"), //Should be always the last one
DRAFT("Draft");
private String label; private String label;