/**
  * Update object
  *
  * @param role to update
  * @throws ServiceException
  */
 @Override
 public void updateRole(Role role) throws ServiceException {
   try {
     roleDao.update(role);
   } catch (DaoException e) {
     throw new ServiceException(e);
   }
 }