@Override
 @Secured({"ROLE_USER"})
 @Transactional(readOnly = true)
 public boolean exist(long id) {
   LOGGER.debug("Exist computer with id : {}", id);
   return companyDAO.exists(id);
 }