String id = node.getAttribute("rdf:about").replace("http://id.luomus.fi/", "");
String fullname = null;
if (node.hasChildNodes("MA.fullName")) {
fullname = node.getNode("MA.fullName").getContents();
}
Person person = new Person(new Qname(id), fullname);
persons.put(id, person);
}
return persons;
}