case ODS:
logger.debug(bundle.getString("exporting-report", "ods"));
JROdsExporter exporterODS = new JROdsExporter();
exporterODS.setParameter(JRExporterParameter.JASPER_PRINT, print);
exporterODS.setParameter(JRExporterParameter.OUTPUT_STREAM, outputStream);
exporterODS.exportReport();
break;
default:
throw new DemoiselleException(bundle.getString("exception-reportimpl-not-found", type.name()));
}
} catch (JRException jre) {