public ArrayList<Committee> getCommitteesFromJson(String filePath, ObjectMapper mapper) {
return getCommitteesFromJson(new File(filePath), mapper);
}
public ArrayList<Committee> getCommitteesFromJson(File file, ObjectMapper mapper) {
CollectionType type = CollectionType.construct(ArrayList.class, SimpleType.construct(Committee.class));
ArrayList<Committee> committees = null;
try {
committees = mapper.readValue(