Added OperationResult

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-statistical-widget@111549 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-01-29 17:41:26 +00:00 committed by Giancarlo Panichi
parent f51b2c334c
commit ac57ab2023
1 changed files with 5 additions and 4 deletions

View File

@ -13,6 +13,7 @@ import org.gcube.portlets.user.td.widgetcommonevent.client.event.SessionExpiredE
import org.gcube.portlets.user.td.widgetcommonevent.client.type.ChangeTableRequestType;
import org.gcube.portlets.user.td.widgetcommonevent.client.type.ChangeTableWhy;
import org.gcube.portlets.user.td.widgetcommonevent.client.type.SessionExpiredType;
import org.gcube.portlets.user.td.widgetcommonevent.shared.OperationResult;
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
import org.gcube.portlets.widgets.StatisticalManagerAlgorithmsWidget.client.SubmissionHandler;
import org.gcube.portlets.widgets.StatisticalManagerAlgorithmsWidget.client.SubmissionParameters;
@ -103,10 +104,10 @@ public class TDSubmissionHandler implements SubmissionHandler,
}
@Override
public void operationComplete(TRId trId) {
public void operationComplete(OperationResult operationResult) {
ChangeTableWhy why = ChangeTableWhy.TABLEUPDATED;
ChangeTableRequestEvent changeTableRequestEvent = new ChangeTableRequestEvent(
ChangeTableRequestType.ROLLBACK, trId, why);
ChangeTableRequestType.ROLLBACK, operationResult.getTrId(), why);
eventBus.fireEvent(changeTableRequestEvent);
}
@ -118,10 +119,10 @@ public class TDSubmissionHandler implements SubmissionHandler,
}
@Override
public void operationStopped(TRId trId, String reason, String details) {
public void operationStopped(OperationResult operationResult, String reason, String details) {
ChangeTableWhy why = ChangeTableWhy.TABLECURATION;
ChangeTableRequestEvent changeTableRequestEvent = new ChangeTableRequestEvent(
ChangeTableRequestType.ROLLBACK, trId, why);
ChangeTableRequestType.ROLLBACK, operationResult.getTrId(), why);
eventBus.fireEvent(changeTableRequestEvent);
}