public String fieldName() {
return "supported-report-set";
}
public SupportedReportSetList getValue( PropFindableResource res ) {
SupportedReportSetList reportSet = new SupportedReportSetList();
for( String reportName : reports.keySet() ) {
reportSet.add( reportName );
}
return reportSet;
}