Feauture #16263: Added 'SHOW' value to ActionType enum

Updated pom version at 0.2.0


git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-analysis/dataminer-invocation-model@178577 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2019-03-14 10:23:12 +00:00
parent e5066fd539
commit 2b3791de3f
3 changed files with 13 additions and 4 deletions

View File

@ -1,8 +1,14 @@
<ReleaseNotes> <ReleaseNotes>
<Changeset
component="org.gcube.data-analysis.dataminer-invocation-model.0-2-0"
date="${buildDate}">
<Change>[Feature #16263] Added 'SHOW' value to ActionType enum
</Change>
</Changeset>
<Changeset <Changeset
component="org.gcube.data-analysis.dataminer-invocation-model.0-1-0" component="org.gcube.data-analysis.dataminer-invocation-model.0-1-0"
date="${buildDate}"> date="${buildDate}">
<Change>[Task 12975] First version <Change>[Task #12975] First version
</Change> </Change>
</Changeset> </Changeset>
</ReleaseNotes> </ReleaseNotes>

View File

@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.data.analysis</groupId> <groupId>org.gcube.data.analysis</groupId>
<artifactId>dataminer-invocation-model</artifactId> <artifactId>dataminer-invocation-model</artifactId>
<version>0.1.0-SNAPSHOT</version> <version>0.2.0-SNAPSHOT</version>
<name>dataminer-invocation-model</name> <name>dataminer-invocation-model</name>
<description>This library manages the dataminer-invocation model that is the xml format interpretable by DataMiner to invoke an algorithm execution</description> <description>This library manages the dataminer-invocation model that is the xml format interpretable by DataMiner to invoke an algorithm execution</description>
<scm> <scm>

View File

@ -3,16 +3,19 @@
*/ */
package org.gcube.data.analysis.dminvocation; package org.gcube.data.analysis.dminvocation;
/** /**
* The Enum ActionType. * The Enum ActionType.
* *
* @author Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it) * @author Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it)
* Dec 5, 2018 *
* Mar 14, 2019
*/ */
public enum ActionType { public enum ActionType {
EDIT("edit"), EDIT("edit"),
SHOW("show"),
RUN("run"); RUN("run");
private String action; private String action;