diff --git a/src/main/java/org/gcube/portlets/user/td/gwtservice/server/TDGWTServiceImpl.java b/src/main/java/org/gcube/portlets/user/td/gwtservice/server/TDGWTServiceImpl.java index 3743dab..713c1ce 100644 --- a/src/main/java/org/gcube/portlets/user/td/gwtservice/server/TDGWTServiceImpl.java +++ b/src/main/java/org/gcube/portlets/user/td/gwtservice/server/TDGWTServiceImpl.java @@ -6495,7 +6495,7 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements InvocationS invocationS=null; if (job.getInvocation() != null) { - Map mapSent=new HashMap(); + HashMap mapSent=new HashMap(); Map map=job.getInvocation().getParameters(); Set keys=map.keySet(); Iterator iterator=keys.iterator(); diff --git a/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/task/InvocationS.java b/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/task/InvocationS.java index f5ba387..442f90e 100644 --- a/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/task/InvocationS.java +++ b/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/task/InvocationS.java @@ -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 parameters; + protected HashMap 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 parameters, String taskId, RefColumn refColumn) { + HashMap 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 getParameters() { + public HashMap getParameters() { return parameters; } - public void setParameters(Map parameters) { + public void setParameters(HashMap parameters) { this.parameters = parameters; }