Closed
Description
Rob Rudin just did a POC implmentation of spring data CrudRepository using PojoRepository. Two methods he couldn't implement were delete(T entity) and delete(Iterable<? extends T> entities). That's because we don't expose PojoRepository.getId which is currently private in PojoRepositoryImpl. All it will take is to make it public, add it to the PojoRepository interface, and do some testing to validate that it's working.