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
master
Francesco Mangiacrapa 5 years ago
parent e5066fd539
commit 2b3791de3f

@ -1,8 +1,14 @@
<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
component="org.gcube.data-analysis.dataminer-invocation-model.0-1-0"
date="${buildDate}">
<Change>[Task 12975] First version
<Change>[Task #12975] First version
</Change>
</Changeset>
</ReleaseNotes>

@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.data.analysis</groupId>
<artifactId>dataminer-invocation-model</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.2.0-SNAPSHOT</version>
<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>
<scm>

@ -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;

Loading…
Cancel
Save