Fixed SDMX Export
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@122363 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
79197f686f
commit
a6d6bd051a
|
@ -11,15 +11,15 @@
|
|||
<Software>
|
||||
<Description>tabular-data-gwt-service allows communication between the GUI and services</Description>
|
||||
<Name>tabular-data-gwt-service</Name>
|
||||
<Version>2.9.0-SNAPSHOT</Version>
|
||||
<Version>2.9.1-SNAPSHOT</Version>
|
||||
<MavenCoordinates>
|
||||
<groupId>org.gcube.portlets.user</groupId>
|
||||
<artifactId>tabular-data-gwt-service</artifactId>
|
||||
<version>2.9.0-SNAPSHOT</version>
|
||||
<version>2.9.1-SNAPSHOT</version>
|
||||
</MavenCoordinates>
|
||||
<Type>library</Type>
|
||||
<Files>
|
||||
<File>tabular-data-gwt-service-2.9.0-SNAPSHOT.jar</File>
|
||||
<File>tabular-data-gwt-service-2.9.1-SNAPSHOT.jar</File>
|
||||
</Files>
|
||||
</Software>
|
||||
</Packages>
|
||||
|
|
|
@ -15,7 +15,7 @@ Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo"
|
|||
Version and Release Date
|
||||
------------------------
|
||||
|
||||
v. 2.9.0-SNAPSHOT (2015-10-15)
|
||||
v. 2.9.1-SNAPSHOT (2016-01-31)
|
||||
|
||||
|
||||
Description
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<ReleaseNotes>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-gwt-service.2-9-1" date="2016-01-31">
|
||||
<Change>Fixed SDMX Export no ExportMetadata is supported on service</Change>
|
||||
</Changeset>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-gwt-service.2-9-0" date="2015-10-15">
|
||||
<Change>Added support to WorkspaceExplorer [ticket #428]</Change>
|
||||
</Changeset>
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -14,7 +14,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.gcube.portlets.user</groupId>
|
||||
<artifactId>tabular-data-gwt-service</artifactId>
|
||||
<version>2.9.0-SNAPSHOT</version>
|
||||
<version>2.9.1-SNAPSHOT</version>
|
||||
|
||||
<name>tabular-data-gwt-service</name>
|
||||
<description>tabular-data-gwt-service allows communication between the GUI and services</description>
|
||||
|
@ -38,7 +38,7 @@
|
|||
<properties>
|
||||
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
||||
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
|
||||
<release.date>2015-10-15</release.date>
|
||||
<release.date>2016-01-31</release.date>
|
||||
<wikiurl>http://wiki.gcube-system.org/gcube/Tabular_Data_Manager</wikiurl>
|
||||
<templatesDirectory>templates</templatesDirectory>
|
||||
<distroDirectory>distro</distroDirectory>
|
||||
|
|
|
@ -293,8 +293,8 @@ public class BackgroundOperationMonitorCreator {
|
|||
case SDMXExport:
|
||||
table = taskWrapper.getTask().getResult().getPrimaryTable();
|
||||
logger.debug("Table retrived: " + table.toString());
|
||||
exportMetadata = table.getMetadata(ExportMetadata.class);
|
||||
logger.debug("ExportMetadata: " + exportMetadata);
|
||||
//exportMetadata = table.getMetadata(ExportMetadata.class);
|
||||
//logger.debug("ExportMetadata: " + exportMetadata);
|
||||
operationMonitor.setTrId(SessionUtil.getTRId(session));
|
||||
break;
|
||||
case JSONExport:
|
||||
|
|
|
@ -285,8 +285,8 @@ public class OperationMonitorCreator {
|
|||
case SDMXExport:
|
||||
table = taskWrapper.getTask().getResult().getPrimaryTable();
|
||||
logger.debug("Table retrived: " + table.toString());
|
||||
exportMetadata = table.getMetadata(ExportMetadata.class);
|
||||
logger.debug("ExportMetadata: " + exportMetadata);
|
||||
//exportMetadata = table.getMetadata(ExportMetadata.class);
|
||||
//logger.debug("ExportMetadata: " + exportMetadata);
|
||||
operationMonitor.setTrId(SessionUtil.getTRId(session));
|
||||
break;
|
||||
case JSONExport:
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<ReleaseNotes>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-gwt-service.2-9-1" date="2016-01-31">
|
||||
<Change>Fixed SDMX Export no ExportMetadata is supported on service</Change>
|
||||
</Changeset>
|
||||
<Changeset component="org.gcube.portlets-user.tabular-data-gwt-service.2-9-0" date="2015-10-15">
|
||||
<Change>Added support to WorkspaceExplorer [ticket #428]</Change>
|
||||
</Changeset>
|
||||
|
|
Loading…
Reference in New Issue