JsonFactory jsonFactory = new JsonFactory();
JsonParser jp = jsonFactory.createParser(inputStream);
return getObjectMapper().readValue(jp, theClass);
}
catch (JsonGenerationException e) {
throw new BoxJSONException(e);
}
catch (JsonMappingException e) {
throw new BoxJSONException(e);
}
catch (JsonParseException e) {
throw new BoxJSONException(e);
}
}