*/
protected AbstractLoader getLoader(String id) {
// get the appropriate loader
PluggableFeatureFactory featureFactory =
ApplicationServer.getServerContext().getPluggableFeatureFactory();
ApplicationLoaderFactory appLoaderFactory =
featureFactory.getApplicationLoaderFactory();
ApplicationLoader appLoader =
appLoaderFactory.createApplicationLoader(id,
this.parentClassLoader,(AppsManager)this.configManager);
_logger.log(Level.FINEST,"ApplicationLoader "+appLoader);
return appLoader;
}