in src/main/java/com/epam/eco/commons/json/JsonMapper.java [92:98]
public static <T> T bytesToObject(byte[] bytes, Class<T> type) {
try {
return MAPPER.reader().forType(type).readValue(bytes);
} catch (IOException ioe) {
throw new RuntimeException(ioe);
}
}