throws ReportProcessingException
{
final ReportParameterValues retval = new ReportParameterValues();
// for the sake of backward compatiblity ..
final ReportProperties reportProperties = report.getProperties();
final String[] propertyKeys = reportProperties.keyArray();
for (int i = 0; i < propertyKeys.length; i++)
{
final String string = propertyKeys[i];
retval.put(string, reportProperties.get(string));
}