Fixed maven-portal-bom

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@95953 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-05-22 14:40:34 +00:00
parent 36b37cc9f6
commit 1f1964861d
3 changed files with 8 additions and 6 deletions

View File

@ -106,6 +106,7 @@
<dependency>
<groupId>com.allen-sauer.gwt.log</groupId>
<artifactId>gwt-log</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>

View File

@ -22,5 +22,6 @@ public enum ChangeTableRequestType {
COLUMNREPLACE,
COLUMNREPLACEBATCH,
ROLLBACK,
EDITROW;
EDITROW,
TASKRESUBMIT;
}

View File

@ -1,7 +1,7 @@
package org.gcube.portlets.user.td.widgetcommonevent.shared;
import java.io.Serializable;
import java.util.Map;
import java.util.HashMap;
/**
*
@ -12,22 +12,22 @@ public class RequestProperties implements Serializable {
private static final long serialVersionUID = -3084969072634114974L;
Map<String, Object> map;
HashMap<String, Object> map;
public RequestProperties(){
}
public RequestProperties(Map<String,Object> map){
public RequestProperties(HashMap<String,Object> map){
this.map=map;
}
public Map<String, Object> getMap() {
public HashMap<String, Object> getMap() {
return map;
}
public void setMap(Map<String, Object> map) {
public void setMap(HashMap<String, Object> map) {
this.map = map;
}