@SuppressWarnings("unchecked")
public Persistent find(Class classe, Long id) throws FindException {
this.persistent = (Persistent) this.em.find(classe, id);
if (this.persistent == null) {
throw new FindException("N�o foi poss�vel encontrar o objeto desejado.");
}
return this.persistent;
}