Added SessionExpiredShow
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@95794 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
09bcd89b6b
commit
7d0ebc6b68
|
@ -566,7 +566,7 @@ public class TabularDataController {
|
|||
public void onSuccess() {
|
||||
openWizard();
|
||||
SDMXImportWizardTD importWizard = new SDMXImportWizardTD(
|
||||
"SDMX Import");
|
||||
"SDMX Import",eventBus);
|
||||
importWizard.addListener(new WizardListener() {
|
||||
|
||||
public void completed(TRId tabularResourceId) {
|
||||
|
@ -636,7 +636,7 @@ public class TabularDataController {
|
|||
public void onSuccess() {
|
||||
openWizard();
|
||||
SDMXExportWizardTD exportWizard = new SDMXExportWizardTD(
|
||||
"SDMX Export");
|
||||
"SDMX Export",eventBus);
|
||||
|
||||
exportWizard.addListener(new WizardListener() {
|
||||
public void failed(Throwable throwable, String reason,
|
||||
|
@ -675,7 +675,7 @@ public class TabularDataController {
|
|||
|
||||
public void onSuccess() {
|
||||
openWizard();
|
||||
TDOpen tdOpen = new TDOpen("Open Tabular Resource");
|
||||
TDOpen tdOpen = new TDOpen("Open Tabular Resource",eventBus);
|
||||
|
||||
tdOpen.addListener(new WizardListener() {
|
||||
|
||||
|
@ -712,7 +712,7 @@ public class TabularDataController {
|
|||
public void onSuccess() {
|
||||
openWizard();
|
||||
CSVImportWizardTD importWizard = new CSVImportWizardTD(
|
||||
"CSV Import");
|
||||
"CSV Import",eventBus);
|
||||
|
||||
importWizard.addListener(new WizardListener() {
|
||||
|
||||
|
|
Loading…
Reference in New Issue