Updated to new service client library

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-csv-import-widget@90815 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-01-31 17:35:26 +00:00
parent 09a5ded189
commit 24f9441a75
1 changed files with 7 additions and 1 deletions

View File

@ -63,6 +63,13 @@ public class CSVImportProgressUpdater extends Timer {
case IN_PROGRESS:
fireOperationUpdate(result.getProgress());
break;
case VALIDATING_RULES:
fireOperationUpdate(result.getProgress());
break;
case STOPPED:
cancel();
errorMessage(result);
break;
case FAILED:
cancel();
errorMessage(result);
@ -73,7 +80,6 @@ public class CSVImportProgressUpdater extends Timer {
+ result.getTrId());
fireOperationComplete(result.getTrId());
break;
default:
Log.info("Unknow State");
break;