deplLogger.log(Level.FINE,
"ASClassLoaderUtil.getModuleClassPath " + "for module Id : " + moduleId);
}
StringBuilder classpath = new StringBuilder(getModulesClasspath(habitat));
ClassLoaderHierarchy clh =
habitat.getService(ClassLoaderHierarchy.class);
final String commonClassPath = clh.getCommonClassPath();
if (commonClassPath != null && commonClassPath.length() > 0) {
classpath.append(commonClassPath).append(File.pathSeparator);
}
addDeployParamLibrariesForModule(classpath, moduleId, deploymentLibs, habitat);
if (deplLogger.isLoggable(Level.FINE)) {