}
public Class<? extends ReportletConf> getReportletConfClass(final Class<Reportlet> reportletClass) {
Class<? extends ReportletConf> result = null;
ReportletConfClass annotation = reportletClass.getAnnotation(ReportletConfClass.class);
if (annotation != null) {
result = annotation.value();
}
return result;
}