public Object fromBody(final TypedInput body, final Type type) throws ConversionException {
final JavaType javaType = mObjectMapper.getTypeFactory().constructType(type);
try {
return mObjectMapper.readValue(body.in(), javaType);
} catch (IOException e) {
throw new ConversionException(e);
}
}