for (Iterator<Element> i = root.elementIterator(); i.hasNext(); ) {
Element itemObject = i.next();
if (itemObject.getName().equals("room_organisations")) {
for (Iterator<Element> innerIter = itemObject.elementIterator( "room_organisation" ); innerIter.hasNext(); ) {
Element orgRoomObject = innerIter.next();
Long rooms_organisation_id = importLongType(unformatString(orgRoomObject.element("rooms_organisation_id").getText()));
Long organisation_id = getNewId(importLongType(unformatString(orgRoomObject.element("organisation_id").getText())), Maps.ORGANISATIONS);