@Test
 @Ignore
 public void testDownloadConsultation() throws JsonProcessingException, IOException {
   MeetingResult result =
       new ObjectMapper().readerFor(MeetingResult.class).readValue(new File("meeting.json"));
   for (de.oklab.leipzig.oparl.service.model.Meeting meeting : result.getData()) {
     for (AgendaItem agendaItem : meeting.getAgendaItem()) {
       if (agendaItem.getConsultation() != null) {
         downloadFile(agendaItem.getConsultation());
       }
     }
   }
 }