Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@95892 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-05-21 12:28:05 +00:00
parent 665cbe4ffa
commit b6a77d47ae
2 changed files with 6 additions and 5 deletions

View File

@ -6495,7 +6495,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements
InvocationS invocationS=null;
if (job.getInvocation() != null) {
Map<String,Object> mapSent=new HashMap<String,Object>();
HashMap<String,Object> mapSent=new HashMap<String,Object>();
Map<String,Object> map=job.getInvocation().getParameters();
Set<String> keys=map.keySet();
Iterator<String> iterator=keys.iterator();

View File

@ -1,6 +1,7 @@
package org.gcube.portlets.user.td.gwtservice.shared.task;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import org.gcube.portlets.user.td.gwtservice.shared.tr.RefColumn;
@ -17,7 +18,7 @@ public class InvocationS implements Serializable {
protected String columnId;
protected long operationId;
protected Long identifier;
protected Map<String, Object> parameters;
protected HashMap<String, Object> parameters;
protected String taskId;
protected RefColumn refColumn;
@ -27,7 +28,7 @@ public class InvocationS implements Serializable {
}
public InvocationS(String columnId, long operationId, Long identifier,
Map<String, Object> parameters, String taskId, RefColumn refColumn) {
HashMap<String, Object> parameters, String taskId, RefColumn refColumn) {
this.columnId = columnId;
this.operationId = operationId;
this.identifier = identifier;
@ -60,11 +61,11 @@ public class InvocationS implements Serializable {
this.identifier = identifier;
}
public Map<String, Object> getParameters() {
public HashMap<String, Object> getParameters() {
return parameters;
}
public void setParameters(Map<String, Object> parameters) {
public void setParameters(HashMap<String, Object> parameters) {
this.parameters = parameters;
}