public boolean updateOSInfo(OSDataVO dataVO,WhitelistService apiClientServices) throws WLMPortalException {
log.info("OSClientServiceImpl.updateOSInfo >>");
boolean result = false;
try {
result = apiClientServices.updateOS(new OsData(dataVO.getOsName(), dataVO.getOsVersion(), dataVO.getOsDescription()));
} catch (Exception e) {
log.error(e.getMessage());
throw ConnectionUtil.handleException(e);
}
log.info("OSClientServiceImpl.updateOSInfo <<");