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() {
|
public void onSuccess() {
|
||||||
openWizard();
|
openWizard();
|
||||||
SDMXImportWizardTD importWizard = new SDMXImportWizardTD(
|
SDMXImportWizardTD importWizard = new SDMXImportWizardTD(
|
||||||
"SDMX Import");
|
"SDMX Import",eventBus);
|
||||||
importWizard.addListener(new WizardListener() {
|
importWizard.addListener(new WizardListener() {
|
||||||
|
|
||||||
public void completed(TRId tabularResourceId) {
|
public void completed(TRId tabularResourceId) {
|
||||||
|
@ -636,7 +636,7 @@ public class TabularDataController {
|
||||||
public void onSuccess() {
|
public void onSuccess() {
|
||||||
openWizard();
|
openWizard();
|
||||||
SDMXExportWizardTD exportWizard = new SDMXExportWizardTD(
|
SDMXExportWizardTD exportWizard = new SDMXExportWizardTD(
|
||||||
"SDMX Export");
|
"SDMX Export",eventBus);
|
||||||
|
|
||||||
exportWizard.addListener(new WizardListener() {
|
exportWizard.addListener(new WizardListener() {
|
||||||
public void failed(Throwable throwable, String reason,
|
public void failed(Throwable throwable, String reason,
|
||||||
|
@ -675,7 +675,7 @@ public class TabularDataController {
|
||||||
|
|
||||||
public void onSuccess() {
|
public void onSuccess() {
|
||||||
openWizard();
|
openWizard();
|
||||||
TDOpen tdOpen = new TDOpen("Open Tabular Resource");
|
TDOpen tdOpen = new TDOpen("Open Tabular Resource",eventBus);
|
||||||
|
|
||||||
tdOpen.addListener(new WizardListener() {
|
tdOpen.addListener(new WizardListener() {
|
||||||
|
|
||||||
|
@ -712,7 +712,7 @@ public class TabularDataController {
|
||||||
public void onSuccess() {
|
public void onSuccess() {
|
||||||
openWizard();
|
openWizard();
|
||||||
CSVImportWizardTD importWizard = new CSVImportWizardTD(
|
CSVImportWizardTD importWizard = new CSVImportWizardTD(
|
||||||
"CSV Import");
|
"CSV Import",eventBus);
|
||||||
|
|
||||||
importWizard.addListener(new WizardListener() {
|
importWizard.addListener(new WizardListener() {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue