868788899091929394
@SuppressWarnings("unchecked") public E find(PK id) throws InstanceNotFoundException { E entity = (E) getSession().get(entityClass, id); if (entity == null) { throw new InstanceNotFoundException(id, entityClass.getName()); } return entity; }