ref 6078:TDM - Create a new widget to support operations's invocation on DataMiner

https://support.d4science.org/issues/6078

Updated to support DataMiner

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/data-miner-manager-cl@146464 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2017-03-30 16:37:56 +00:00
parent d659d193ca
commit 48b63393a7
3 changed files with 23 additions and 15 deletions

View File

@ -3,11 +3,10 @@ package org.gcube.data.analysis.dataminermanagercl.shared.data;
import java.io.Serializable;
import java.util.ArrayList;
/**
*
* @author Giancarlo Panichi
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
* @author Giancarlo Panichi email: <a
* href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class TableItemSimple implements Serializable {
@ -18,6 +17,7 @@ public class TableItemSimple implements Serializable {
private String description;
private String type;
private ArrayList<ColumnItem> columns;
private boolean tabularResource;
/**
*
@ -25,6 +25,7 @@ public class TableItemSimple implements Serializable {
public TableItemSimple() {
super();
columns = new ArrayList<ColumnItem>();
tabularResource = false;
}
/**
@ -40,6 +41,7 @@ public class TableItemSimple implements Serializable {
this.name = name;
this.description = description;
this.type = type;
tabularResource = false;
}
/**
@ -115,7 +117,6 @@ public class TableItemSimple implements Serializable {
this.id = id;
}
public ArrayList<ColumnItem> getColumns() {
return columns;
}
@ -124,13 +125,20 @@ public class TableItemSimple implements Serializable {
this.columns = columns;
}
public boolean isTabularResource() {
return tabularResource;
}
public void setTabularResource(boolean tabularResource) {
this.tabularResource = tabularResource;
}
@Override
public String toString() {
return "TableItemSimple [id=" + id + ", name=" + name
+ ", description=" + description + ", type=" + type
+ ", columns=" + columns + "]";
+ ", columns=" + columns + ", tabularResource="
+ tabularResource + "]";
}
}

View File

@ -87,11 +87,11 @@ public class TabularListParameter extends Parameter {
@Override
public String toString() {
return "TabularListParameter [value=" + value + ", separator="
+ separator + ", templates=" + templates + ", defaultMimeType="
+ defaultMimeType + ", supportedMimeTypes="
+ supportedMimeTypes + ", name=" + name + ", description="
+ description + ", typology=" + typology + "]";
return "TabularListParameter [separator=" + separator + ", templates="
+ templates + ", defaultMimeType=" + defaultMimeType
+ ", supportedMimeTypes=" + supportedMimeTypes + ", name="
+ name + ", description=" + description + ", typology="
+ typology + ", value=" + value + "]";
}
}

View File

@ -95,11 +95,11 @@ public class TabularParameter extends Parameter {
@Override
public String toString() {
return "TabularParameter [tableName=" + value + ", templates="
+ templates + ", defaultMimeType=" + defaultMimeType
return "TabularParameter [templates=" + templates
+ ", defaultMimeType=" + defaultMimeType
+ ", supportedMimeTypes=" + supportedMimeTypes + ", name="
+ name + ", description=" + description + ", typology="
+ typology + "]";
+ typology + ", value=" + value + "]";
}
}