@Override
public boolean updateOEMInfo(OEMDataVO dataVO,WhitelistService apiClientServices) throws WLMPortalException {
log.info("OEMClientServiceImpl.updateOEMInfo >>");
boolean result = false;
try {
apiClientServices.updateOEM(new OemData(dataVO.getOemName(), dataVO.getOemDescription()));
result = true;
} catch (Exception e) {
log.error(e.getMessage());
throw ConnectionUtil.handleException(e);
}