public ResponsavelAtividade getByUsuarioId(Long id) {
   try {
     ResponsavelAtividade res = responsavelAtividadeDAO.getByUsuarioId(id);
     if (res != null) {
       return res;
     }
   } catch (SQLException ex) {
     Logger.getLogger(ParticipanteService.class.getName()).log(Level.SEVERE, null, ex);
   }
   return null;
 }