Map<String, String> choices = new HashMap<String, String>();
for (Choice choice : poll.getChoices()) {
log.debug("Adding choice: " + choice.toString());
choices.put(choice.getId().toString(), choice.toString());
}
choice = new LongChoiceField(choices);
}