Map<String, Object> configMap = new HashMap<String, Object>();
ArrayList<Object> jobList = new ArrayList<Object>();
for ( BackupJobDescription desc : descs )
{
jobList.add( new BackupJobDescriptionRepresentation( desc ).serialize( includeLog ) );
}
configMap.put( JOB_LIST_KEY, jobList );
return configMap;
}