Package org.rhq.coregui.client.components

Examples of org.rhq.coregui.client.components.ReportExporter.export()


                    reportType = "inventorySummary";
                }

                ReportExporter exportModalWindow = ReportExporter.createExporterForInventorySummary(reportType,
                    resourceTypeId, version);
                exportModalWindow.export();
                refreshTableInfo();
            }
        });
    }
View Full Code Here


                ReportExporter exporter = ReportExporter.createExporterForRecentDrift("recentDrift",
                    definitionFilter.getValueAsString(), changeSetFilter.getValueAsString(),
                    categoryFilter.getValues(), pathFilter.getValueAsString(), startDateFilter.getValueAsDays(),
                    startDateFilter.getValueAsDays());
                exporter.export();
                refreshTableInfo();
            }

        });
View Full Code Here

            }

            @Override
            public void executeAction(ListGridRecord[] selection, Object actionValue) {
                ReportExporter exporter = ReportExporter.createStandardExporter("configurationHistory");
                exporter.export();
                refreshTableInfo();
            }
        });
    }
View Full Code Here

            @Override
            public void executeAction(ListGridRecord[] selection, Object actionValue) {

                ReportExporter exporter = ReportExporter.createExporterForRecentAlerts("recentAlerts",
                    priorityFilter.getValues(), alertFilter.getValues(), startDateFilter.getValueAsDays(), endDateFilter.getValueAsDays(), alertNameFilter.getValueAsString());
                exporter.export();
                refreshTableInfo();
            }
        });
    }
View Full Code Here

            @Override
            public void executeAction(ListGridRecord[] selection, Object actionValue) {

                ReportExporter exporter = ReportExporter.createExporterForRecentOperations("recentOperations",
                    statusFilter.getValues(), startDateFilter.getValueAsDays(), endDateFilter.getValueAsDays());
                exporter.export();
                refreshTableInfo();
            }

        });
    }
View Full Code Here

            }

            @Override
            public void executeAction(ListGridRecord[] selection, Object actionValue) {
                ReportExporter exporter = ReportExporter.createStandardExporter("alertDefinitions");
                exporter.export();
                refreshTableInfo();
            }
        });
    }
View Full Code Here

            }

            @Override
            public void executeAction(ListGridRecord[] selection, Object actionValue) {
                ReportExporter exporter = ReportExporter.createStandardExporter("suspectMetrics");
                exporter.export();
                refreshTableInfo();
            }
        });
    }
View Full Code Here

            @Override
            public void executeAction(ListGridRecord[] selection, Object actionValue) {
                ReportExporter exportModalWindow = ReportExporter.createExporterForInventorySummary(
                    getReportNameForDownloadURL());
                exportModalWindow.export();
                refreshTableInfo();
            }
        });
    }
View Full Code Here

            }

            @Override
            public void executeAction(ListGridRecord[] selection, Object actionValue) {
                ReportExporter exporter = ReportExporter.createStandardExporter("platformUtilization");
                exporter.export();
                refreshTableInfo();
            }
        });
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.