diff --git a/.classpath b/.classpath index 8ce28d6..4062bfa 100644 --- a/.classpath +++ b/.classpath @@ -1,12 +1,12 @@ - + - + @@ -33,5 +33,5 @@ - + diff --git a/pom.xml b/pom.xml index 484655b..975811d 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ 4.0.0 org.gcube.portlets.user tabular-data-gwt-service - 2.0.0-SNAPSHOT + 2.1.0-SNAPSHOT tabular-data-gwt-service tabular-data-gwt-service allows communication between the GUI and services 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 5d2fdc7..6a4c612 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 @@ -768,14 +768,11 @@ public class TDGWTServiceImpl extends RemoteServiceServlet implements } if (listOrderInfo == null) { - logger.error("Error no codelist direction present in session"); - throw new TDGWTServiceException( - "Error no codelist direction present in session"); + logger.info("No listOrderInfo present in session"); + } if (filter == null) { - logger.error("Error no codelist filter present in session"); - throw new TDGWTServiceException( - "Error no codelist filter present in session"); + logger.error("No filter filter present in session"); } if (plc.getOffset() < 0 || plc.getOffset() >= ltr.size()) { diff --git a/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/Constants.java b/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/Constants.java index 0b0f603..fce9054 100644 --- a/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/Constants.java +++ b/src/main/java/org/gcube/portlets/user/td/gwtservice/shared/Constants.java @@ -12,7 +12,7 @@ package org.gcube.portlets.user.td.gwtservice.shared; */ public class Constants { - public final static String VERSION = "2.0.0"; + public final static String VERSION = "2.1.0"; public final static String DEFAULT_USER = "giancarlo.panichi"; public final static String DEFAULT_SCOPE = "/gcube/devsec";