//DataSourceManager.baseObjectSource.mapObject(initializer,getPersistableBackerId(objectId));
return initializer.getMap();
}
public void mapObject(PersistableInitializer initializer, String objectId) throws Exception {
if (!("".equals(objectId) || "schemaProperties".equals(objectId) || "root".equals(objectId))) {
ObjectId configId = sourceToConfigObject.get(objectId);
if(configId == null)
throw new ObjectNotFoundException(this,objectId);
configId.source.mapObject(initializer,configId.subObjectId);
DataSource source = DataSourceManager.getSource(objectId);
initializer.setProperty("instances", ObjectId.idForObject(source, ""));