Reordered constants to improve readability

This commit is contained in:
Luca Frosini 2024-05-09 17:09:53 +02:00
parent ad9d5a3776
commit 903cc302d8
3 changed files with 8 additions and 2 deletions

View File

@ -2,6 +2,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for gCube Catalogue (gCat) API
## [v2.3.3-SNAPSHOT]
- Reordered constants to improve readability
## [v2.3.2]
- Library modified to be compliant with both Smartgears 3 and 4

View File

@ -9,7 +9,7 @@
</parent>
<groupId>org.gcube.data-catalogue</groupId>
<artifactId>gcat-api</artifactId>
<version>2.3.2</version>
<version>2.3.3-SNAPSHOT</version>
<name>gCube Catalogue (gCat) API</name>
<description>gCube Catalogue (gCat) API is a library containing classes shared across gcat* components</description>
<properties>

View File

@ -13,9 +13,9 @@ public enum Role {
ADMIN(Role.CATALOGUE_ADMIN, "admin"),
MANAGER(Role.CATALOGUE_MANAGER, "admin");
public static final String CATALOGUE_ADMIN = "Catalogue-Admin";
public static final String CATALOGUE_EDITOR = "Catalogue-Editor";
public static final String CATALOGUE_MEMBER = "Catalogue-Member";
public static final String CATALOGUE_ADMIN = "Catalogue-Admin";
public static final String CATALOGUE_MANAGER = "Catalogue-Manager";
private final String portalRole;