Added DELETE_RELATION into enum OPERATION_ON_ITEM
This commit is contained in:
parent
702b24d3cc
commit
2747ffbb4d
|
@ -4,7 +4,7 @@
|
||||||
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.1.0] - 2023-05-11
|
## [v2.1.0-SNAPSHOT] - 2023-05-11
|
||||||
|
|
||||||
- Integrated the deleteFileset method [#24977]
|
- Integrated the deleteFileset method [#24977]
|
||||||
- Integrated with the Geoportal_Resolver service [#25031]
|
- Integrated with the Geoportal_Resolver service [#25031]
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -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.1.0</version>
|
<version>2.1.0-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>
|
||||||
|
|
|
@ -20,6 +20,7 @@ public enum OPERATION_ON_ITEM {
|
||||||
PUBLISH_UNPUBLISH_PROJECT("Publish/UnPublish the Project"),
|
PUBLISH_UNPUBLISH_PROJECT("Publish/UnPublish the Project"),
|
||||||
DELETE_PROJECT("Delete the Project"),
|
DELETE_PROJECT("Delete the Project"),
|
||||||
CREATE_RELATION("Create Relation between two Projects"),
|
CREATE_RELATION("Create Relation between two Projects"),
|
||||||
|
DELETE_RELATION("Delete Relation between two Projects"),
|
||||||
VIEW_RELATIONSHIPS("View the relationship/s created for the Project");
|
VIEW_RELATIONSHIPS("View the relationship/s created for the Project");
|
||||||
|
|
||||||
String label;
|
String label;
|
||||||
|
|
Loading…
Reference in New Issue