// All the sessions have been built now so we can process the Session Brokers
Enumeration ee = sessionBrokerConfigs.elements();
while (ee.hasMoreElements()) {
SessionBrokerConfig sessionBrokerConfig = (SessionBrokerConfig)ee.nextElement();
SessionBroker sessionBroker = buildSessionBrokerConfig(sessionBrokerConfig);
sessionBroker.getDatasourcePlatform().getConversionManager().setLoader(classLoader);
processSessionCustomizer(sessionBrokerConfig, sessionBroker);
m_sessions.put(sessionBroker.getName(), sessionBroker);
}
return m_sessions;
}