public static void remove(String id) throws Exception {
try {
PersistentAccess pa = PersistentAccessFactory.getInstance();
Presenca presenca = (Presenca) pa.find(Presenca.class, id);
presenca.setStatus(Status.EXCLUIDO);
pa.persist(presenca);
} catch (Exception e) {
throw new Exception(e.getClass().getName() + ": " + e.getMessage());
}
}