public Object getCellValue(String columnName) {
try {
return PropertyUtils.getProperty(bean, columnName);
} catch (Exception e) {
throw new DataExportException("Exception while reading the property " + columnName
+ " from bean " + bean + " of type " + bean.getClass().getName(), e);
}
}