- for submitQuery operation attributes names added in the csv file. submitQuery method modified in GWTdbManagerServiceImpl class.

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/databases-manager-portlet@100962 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Loredana Liccardo 2014-10-24 12:50:47 +00:00
parent 695e8c423e
commit 260ce2c6e6
1 changed files with 4 additions and 2 deletions

View File

@ -721,8 +721,7 @@ public class GWTdbManagerServiceImpl extends RemoteServiceServlet implements
throw new Exception(
"Error in server while loading data.");
}
// remove the header in order to parse only the result
output.remove(0);
// store the result of the submit query operation
// updateSubmitQueryResultMap(UID, output);
// remove job with the specified uid
@ -747,6 +746,9 @@ public class GWTdbManagerServiceImpl extends RemoteServiceServlet implements
net.sf.ehcache.Element dataToCache = new net.sf.ehcache.Element(
keyData, result);
insertDataIntoCache(dataToCache);
// remove the header in order to parse only the result
output.remove(0);
net.sf.ehcache.Element submitQueryResultToCache = new net.sf.ehcache.Element(
keySubmitQueryResult, output);