private ExportConfiguration<Pony> initExportConfiguration() {
final ExportConfiguration<Pony> exportConfiguration = new ExportConfiguration<Pony>();
exportConfiguration.addExporter(new CSVExporter<Pony>("pony"));
exportConfiguration.addExporter(new PDFExporter<Pony>("Pony export", "users"));
exportConfiguration.addExporter(new XMLExporter<Pony>("root", "pony"));
exportConfiguration.addExportableField(new ExportableField("name", "Name"));
exportConfiguration.addExportableField(new ExportableField("age", "Age"));
exportConfiguration.addExportableField(new ExportableField("race", "type"));
return exportConfiguration;
}