private FoodMartQuerySet() throws IOException {
final ObjectMapper mapper = new ObjectMapper();
mapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true);
mapper.configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES, true);
final InputStream inputStream = new FoodMartQuery().getQueries();
FoodmartRoot root = mapper.readValue(inputStream, FoodmartRoot.class);
for (FoodmartQuery query : root.queries) {
queries.put(query.id, query);
}
}