DATADOC-157 - changed order parameters are declared for JavaDoc

This commit is contained in:
Thomas Risberg
2011-05-31 22:54:21 -04:00
parent 523d48759f
commit 7bed1264b1

View File

@@ -489,12 +489,12 @@ public interface MongoOperations {
/**
* Updates the first object that is found in the default collection that matches the query document with the provided
* updated document.
* @param entityClass
* class that determines the collection to use
* @param queryDoc
* the query document that specifies the criteria used to select a record to be updated
* @param updateDoc
* the update document that contains the updated object or $ operators to manipulate the existing object.
* @param entityClass
* class that determines the collection to use
*/
WriteResult updateFirst(Query query, Update update, Class<?> entityClass);
@@ -514,12 +514,12 @@ public interface MongoOperations {
/**
* Updates all objects that are found in the default collection that matches the query document criteria with the
* provided updated document.
* @param entityClass
* class that determines the collection to use
* @param queryDoc
* the query document that specifies the criteria used to select a record to be updated
* @param updateDoc
* the update document that contains the updated object or $ operators to manipulate the existing object.
* @param entityClass
* class that determines the collection to use
*/
WriteResult updateMulti(Query query, Update update, Class<?> entityClass);