if(_logger.isLoggable(Level.FINEST)) {
_logger.finest(
"in ServerConfigLookup>>getUuidGeneratorImplClassFromConfig");
}
String defaultUuidGeneratorClass = DEFAULT_UUID_GENERATOR_CLASS;
ManagerProperties mp = getInstanceSessionManagerManagerProperties();
if (mp != null) {
String cls = mp.getSessionIdGeneratorClassname();
if (cls != null) {
defaultUuidGeneratorClass = cls;
}
}
return this.getWebContainerAvailabilityPropertyString(UUID_GENERATOR_CLASS_PROPERTY_NAME, defaultUuidGeneratorClass);