ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(getValue().getBytes(CharEncoding.UTF_8));
Document doc = db.parse(byteArrayInputStream);
setFields(doc);
} catch (ParserConfigurationException e) {
throw new StorkRuntimeException(e);
} catch (SAXException e) {
throw new StorkRuntimeException(e);
} catch (IOException e) {
throw new StorkRuntimeException(e);
}
}