public void readXML(XMLStreamReader reader, Workspace workspace) {
Dhns dhns = workspace.getLookup().lookup(Dhns.class);
DataSerializer serializer = new DataSerializer();
try {
serializer.readData(reader, dhns);
} catch (XMLStreamException ex) {
throw new RuntimeException(ex);
}
}