in paimon-web-server/src/main/java/org/apache/paimon/web/server/util/ObjectMapperUtils.java [106:115]
public static <T> T fromJSON(@Nullable byte[] bytes, Class<T> valueType) {
if (bytes == null) {
return null;
}
try {
return MAPPER.readValue(bytes, valueType);
} catch (IOException e) {
throw wrapException(e);
}
}