From 60f7dfb5c75a2ae157d703762ac1167a3a3a4b60 Mon Sep 17 00:00:00 2001 From: Mark Pollack Date: Fri, 3 Dec 2010 10:59:39 -0500 Subject: [PATCH] README updates. --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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.