// -------------------------------------------------------- Private Methods
private void setupExporter(ExportTable table) {
// Setup table exporting
ExcelTableExporter excel = new ExcelTableExporter("Excel", "/assets/images/page_excel.png");
table.getExportContainer().add(excel);
// Excluding the action column ensures the actions are not exported to
// Excel
table.getExcludedExportColumns().add(ACTION_COLUMN);