added an ItemAction for RESTORED item

This commit is contained in:
Lucio Lelii 2020-04-15 17:34:51 +02:00
parent 259079a213
commit 1cae1af75b
2 changed files with 7 additions and 2 deletions

View File

@ -18,7 +18,7 @@
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>storagehub-model</artifactId> <artifactId>storagehub-model</artifactId>
<version>1.0.5</version> <version>1.0.7</version>
<name>storagehub-model</name> <name>storagehub-model</name>
<dependencyManagement> <dependencyManagement>

View File

@ -31,6 +31,11 @@ public enum ItemAction {
/** /**
* The item has been updates. * The item has been updates.
*/ */
UPDATED; UPDATED,
/**
* The item has been restored from trash.
*/
RESTORED;
} }