_osUtil = getOsUtil(allProcessFlag);
}
protected OSUtil getOsUtil(String allProcessFlag) {
OSUtil osUtil = OSUtilFactory.getOSUtil(allProcessFlag);
if (osUtil == null) {
LOGGER.log(Level.WARNING, getClass().getCanonicalName()
+ ".no_os_utils");
} else {
LOGGER.log(Level.FINEST, getClass().getCanonicalName()
+ osUtil.getInfo());
}
return osUtil;
}