Added OperationResult

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-extractcodelist-widget@111543 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-01-29 17:37:51 +00:00
parent ed4a01f8fe
commit ffdb919abf
1 changed files with 5 additions and 4 deletions

View File

@ -10,6 +10,7 @@ import org.gcube.portlets.user.td.monitorwidget.client.MonitorDialog;
import org.gcube.portlets.user.td.monitorwidget.client.MonitorDialogListener;
import org.gcube.portlets.user.td.widgetcommonevent.client.event.SessionExpiredEvent;
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.user.td.wizardwidget.client.WizardCard;
@ -99,8 +100,8 @@ public class ExtractCodelistOperationInProgressCard extends WizardCard
}
@Override
public void operationComplete(TRId trId) {
newTrId = trId;
public void operationComplete(OperationResult operationResult) {
newTrId = operationResult.getTrId();
SafeHtmlBuilder safeHtmlBuilder = new SafeHtmlBuilder();
safeHtmlBuilder
.appendHtmlConstant("<div style='text-align:center;font-size:large;font-weight:bold; color:#009900;'>Operation Completed</div>"
@ -149,8 +150,8 @@ public class ExtractCodelistOperationInProgressCard extends WizardCard
}
@Override
public void operationStopped(TRId trId, String reason, String details) {
newTrId = trId;
public void operationStopped(OperationResult operationResult, String reason, String details) {
newTrId = operationResult.getTrId();
SafeHtmlBuilder safeHtmlBuilder = new SafeHtmlBuilder();
safeHtmlBuilder
.appendHtmlConstant("<div style='text-align:center;font-size:large;font-weight:bold;color: #FF9900;'>Problems in the Operation</div>");