while (theValues.hasNext ())
{
String theClass = (String) theValues.next ();
try
{
I_SiteInitializer theInitializer = getSiteInitializer (theClass);
if (theInitializer != null)
{
theInitializer.initializeSite (theSCM.getGlobalProperties ());
}
else
{
System.err.println ("[ServerConfigurationManager] - Expected site specific initializer class not found : " +
theClass);