public void actualizarNotificacion(long id) throws Exception {

    long lonIdNotificacion = id;
    NotificacionModelo.actualizarNotificacion(new NotificacionEntidad(lonIdNotificacion));

    delete();
  }
 // </editor-fold>
 // <editor-fold defaultstate="collapsed" desc="Funciones">
 public void cargarNotificacion() {
   try {
     this.arrLisNotificacion =
         NotificacionModelo.obtenerNotificacion(sesion.getSesionUsuarioActual().getUsuario_id());
   } catch (Exception e) {
     System.err.println("e" + e.getMessage());
   }
 }