Object item = objectConverter.getObject(session, node.getPath());
if (collection instanceof Map) {
String name = node.getName();
((Map) collection).put(name, item);
} else {
collection.addObject(item);
}
}
return collection;
} catch (ValueFormatException vfe) {