diff --git a/distro/changelog.xml b/distro/changelog.xml index e35e8ef..8e815b6 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,8 +1,14 @@ + + [Feature #16263] Added 'SHOW' value to ActionType enum + + - [Task 12975] First version + [Task #12975] First version \ No newline at end of file diff --git a/pom.xml b/pom.xml index 37842fe..97a336e 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ 4.0.0 org.gcube.data.analysis dataminer-invocation-model - 0.1.0-SNAPSHOT + 0.2.0-SNAPSHOT dataminer-invocation-model This library manages the dataminer-invocation model that is the xml format interpretable by DataMiner to invoke an algorithm execution diff --git a/src/main/java/org/gcube/data/analysis/dminvocation/ActionType.java b/src/main/java/org/gcube/data/analysis/dminvocation/ActionType.java index 02ca855..09be9df 100644 --- a/src/main/java/org/gcube/data/analysis/dminvocation/ActionType.java +++ b/src/main/java/org/gcube/data/analysis/dminvocation/ActionType.java @@ -3,16 +3,19 @@ */ package org.gcube.data.analysis.dminvocation; - /** * The Enum ActionType. * * @author Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it) - * Dec 5, 2018 + * + * Mar 14, 2019 */ public enum ActionType { EDIT("edit"), + + SHOW("show"), + RUN("run"); private String action;