diff --git a/README.md b/README.md index 5fe5d486b..7f6dc4d6d 100644 --- a/README.md +++ b/README.md @@ -49,21 +49,21 @@ Future plans are to support optional logging and/or exception throwing based on T save(T entity); - List save(Iterable entities); + List save(Iterable entities); - T findById(ID id); + T findById(ID id); - boolean exists(ID id); + boolean exists(ID id); - List findAll(); + List findAll(); - Long count(); + Long count(); - void delete(T entity); + void delete(T entity); - void delete(Iterable entities); + void delete(Iterable entities); - void deleteAll(); + void deleteAll(); } and there is a placeholder interface called MongoRepository that will in future add more Mongo specific methods.